Jump to content

myselfidem

Member
  • Posts

    2,515
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Switzerland

Everything posted by myselfidem

  1. French manual updated with the new line added inside Chapter-10.html (line 58): File\Folder structure = Win7\sources\$oem$\$$\setup\scripts Compressed images to save space. Regards
  2. Thanks. Tested and added to my customized Windows 7 SP1. These updates are for Windows and they are given with WU after the installation if they aren't integrated. Regards
  3. Yes you can use your customized Autounattend.xml file to have the displayed windows you want for asking the OS, Disk Configuration and Enter the key ! To have all images displayed it's needed to remove the ei.cfg file inside: %Distribution_Folder%\sources\ei.cfg To display the OS: Inside: <settings pass="windowsPE"> <ImageInstall> <OSImage> <WillShowUI>OnError</WillShowUI> <InstallToAvailablePartition>true</InstallToAvailablePartition> </OSImage> </ImageInstall> To display the Disk Configuration use this value: <DiskConfiguration> <WillShowUI>Always</WillShowUI> </DiskConfiguration> To display the window to enter the key: Remove inside: <settings pass="windowsPE"> <Key> </ProductKey> and/or Remove inside: <settings pass="specialize"> <ProductKey>XXXXX-XXXXX-XXXXX-XXXXX-XXXXX</ProductKey> Cheers
  4. You can download reading the manual or here: http://www.wpiw.net/downloads/Sources.rar But it's for Windows Vista, Server 2008 and Windows 7 ! Cheers
  5. I think you have now (if you have a full version es-ES | 1034), inside information window: language = "ESP" localisation = "Spanish - Spain (Traditional Sort)"
  6. I see you on Wincert forum and you use a crap?? What do you want? http://www.wincert.net/forum/topic/10042-win-toolkit-rt7-lite-rt7-booster/#entry89247 Strange boy you are! Cheers
  7. Reading more carefully this thread we can find more explainations: http://www.msfn.org/...post__p__940921
  8. Works very well! I don't understand this 7zSfxFolder28=C:\Users\gora\AppData\Local How to use it...? I think %7zSfxFolder28% is a new variable inside the SFX modified module, to do this job ! Cheers
  9. Could you also change inside installer_log.js (line 99): Replace: WriteLogLinePlain(" "+getText(lblArchType)+"="+sysArch); With: WriteLogLinePlain(" "+getText(lblArchType)+"="+getArch()); Regards
  10. Inside the new manual, I see it's now possible to remove the line: On Chapter-1.html (line 9) <style type="text/css"></style> On Chapter- 9.html (line 36) Replace: v8.6.0 Updates - Released September 4th, 2012 With: v8.6.1 Updates - Released September 4th, 2012 On Chapter-10.html (line 42 to 48 to Center the image) Regards
  11. Here is the new french manual updated with corrections in Chapter 6 and some few words: Thanks and regards *Edit: New French manual updated
  12. Not a t all! http://www.rtwincustomize.net/web/ Regards
  13. Thanks Kelsenellenelvian for the new release! Could you add with WPI_v8.6.1, inside information.js: MyComputerGrid.addRow(gId++,getText(lblOSBuild)+','+getOSBuildID()+''); Thanks and regards
  14. Many thanks Kels for the new awesome release WPI_v8.6.1 To display the Archtype correctly could you change like this inside information.js: Replace: ArchitectureGrid.addRow(gId++,getText(lblArchType)+','+getArch+''); with: ArchitectureGrid.addRow(gId++,getText(lblArchType)+','+getArch()+''); Thanks to update the wpi.xml file with: <version>8.6.1</version> Regards
  15. I think it's a restriction of the compression ! And we must remember that a final user can install only ONE Windows 7 version to use and validate ! You can add a choice inside your batch file to save only one image ! Regards
  16. Yes, you are right it's better to add also inside boot.wim 1 ! You made an awesome work. I think it's needed first to add languagepacks (for boot.wim 1, boot.wim 2, install.wim), after drivers and updates to avoid errors!
  17. I see inside the command SetLang.cmd you add also inside boot.wim 1 ! You don't need, but only for some languages: Walkthrough: Add Multilingual Support to Windows Setup That strange! Could you past the command ?
  18. Have you compressed install.wim and boot.wim files? Always using the same compression! You can find here my examples inside Batch.rar folder (look inside en-US | Export_Boot.cmd and Export.cmd): Take care with Export.cmd because only one image is exported (used to keep only one image= example Ultimate Edition)! http://www.mediafire.com/?kns27djwvkrj2
  19. Can you clarify??? Not totaly solved! The trouble was a warning message on a popup window at start and restart Windows on VM Oracle VirtualBox, only installing some applications with WPI, but not when installing all. WMI error message insde the Event System log: And Windows needed 4 minutes to start and 4 minutes to restart only the first time. Windows Management Instrumentation This happens only using VM VirtualBox - not on my Computer - and I made some adjustments inside VM: Configuration | System | Acceleration uncheck the boxes: - Hardware Virtualization: Activate VT-x/AMD-V Enable Paging nested WPI is more faster than never! Using WMI Maintaining WMI Security Regards Solved using this workaround: Event ID 10 is logged in the Application log after you install Service Pack 1 for Windows 7 or Windows Server 2008 R2 Using with WPI and not have window boxes I use like this: Workaround.vbs ' Event ID 10 is logged in the Application log after you install ' Service Pack 1 for Windows 7 or Windows Server 2008 R2 ' For more details read instructions on the link below ' http://support.microsoft.com/kb/2545227 strComputer = "." Set objWMIService = GetObject("winmgmts:" _ & "{impersonationLevel=impersonate}!\\" _ & strComputer & "\root\subscription") set obj1 = objWMIService.ExecQuery("select * from __eventfilter where name='BVTFilter' and query='SELECT * FROM __InstanceModificationEvent WITHIN 60 WHERE TargetInstance ISA ""Win32_Processor"" AND TargetInstance.LoadPercentage > 99'") For Each obj1elem in obj1 set obj2set = obj1elem.Associators_("__FilterToConsumerBinding") set obj3set = obj1elem.References_("__FilterToConsumerBinding") For each obj2 in obj2set obj2.Delete_ next For each obj3 in obj3set obj3.Delete_ next obj1elem.Delete_ Next Or we can download and use Microsoft FixIt installing with WPI, at last: MicrosoftFixit50688.msi (using /qn switches). Regards
  20. The additonal lines are now added at bottom inside lang_en.js! Example. // WPI v8.5+ New lines lblOSvernumber[lang] = ['Operating System Version']; lblThemeFile[lang] = ['Theme file']; lblWindowsFile[lang] = ['Window Options file']; lblOSBuild[lang] = ['OS Current Build']; //------------------------------------------------------------------------------ Regards
  21. Many thanks for your sharing! Regards
  22. I see inside wmi.js that is missing for getOSvernum (line 22, ect.) function getOSvernum() { position="wmi.js"; whatfunc="getOSvernum()"; Regards *Edit. I see there is a new download link for WPI: http://www.wpiw.net/help.html
  23. These packages are for boot.wim 2!
  24. Inside information.js It seems it's an error: ArchitectureGrid.addRow(gId++,getText(lblArchType)+','+sysArch+''); Changed with: ArchitectureGrid.addRow(gId++,getText(lblArchType)+','+getArch()+''); Regards
  25. Thanks Whatsup! Iupdated my last post ! Missing some values: catch(ex2) { Enum=1033; } core.js for %OSLANG% // %OSLANG% var Enum, DtoH; CreateLocalArray(); try { objWMIService=GetObject("winmgmts:\\\\" + "." + "[url="file://\\root\\CIMV2"]\\root\\CIMV2[/url]"); colItems=objWMIService.ExecQuery("SELECT * FROM Win32_OperatingSystem", "WQL", wbemFlagReturnImmediately | wbemFlagForwardOnly); enumItems=new Enumerator(colItems); for (; !enumItems.atEnd(); enumItems.moveNext()) objItem=enumItems.item(); OSLanguage=objItem.OSLanguage; // OSLanguage=1033, 1036, .... try { var Enum=objItem.OSLanguage; } catch(ex2) { Enum=1033; } DtoH=DecToHex(Enum); while (DtoH.length<4) DtoH="0" + DtoH+""; for (var x=0; x<arrOSLang.length; x++) { if (arrOSLang[x].LCID==DtoH) { oslang=arrOSLang[x].TLA; oslocale=arrOSLang[x].Locale; break; } } } catch(ex) { oslang="ENU"; oslocale="English - United States"; } // Environment variable for batch file setEnvVar("HDD",hdd,false); setEnvVar("CDDRV",cddrv,false); setEnvVar("WPIPATH",wpipath,false); setEnvVar("ROOT",root,false); setEnvVar("OSLANG",oslang,false); setEnvVar("OSLOCALE",oslocale,false); } *Edit: I'm testing with these values now! I don't know if it's a good idea...But works! I'm testing on VM to see the result and see if there is always WMI errors! Regards
×
×
  • Create New...