Jump to content

myselfidem

Member
  • Posts

    2,515
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Switzerland

Everything posted by myselfidem

  1. Nope, that didn't fix it. The exact error is: Windows could not parse or process unattend answer file [C:\windows\panther\unattend.xml] for pass [specialize]. A component or setting specified in the answer file does not exist. I guess that means something is broken in the <settings pass="specialize"> ???? Yes, I give you a correct fix...Look carrefully the pass: <settings pass="specialize"> You can also remove the last line, because you've made an AIO and the image names aren't the same! <cpi:offlineImage cpi:source="wim:d:/sources/install.wim#Windows 7 PROFESSIONAL" xmlns:cpi="urn:schemas-microsoft-com:cpi" />
  2. Look at line 177 inside your unattend.xml file, a part is missing. Change to: <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64"... <RegisteredOwner>Sapere</RegisteredOwner>
  3. If I well understand, you want remove the recovery partition on your computer? If it's the case this can be done...But it's needed to use a CD. What is the manufacturer of your PC?
  4. Only IE_SUPPORT_%Arch%_xx-XX.CAB can't be integrated!
  5. @Kels Could you add inside WPI_v8.6.6 the French Manual updated with: [Comparison operator ===] added on Chapter 7, please! French Manual and lang_fr.js updated for WPI_v8.6.6: http://www.mediafire.com/?6696bficr91ar Thanks and regards.
  6. Maybe that can help: http://www.registryq...-453-75817.html *Edit: Are you using Se7en_UA on Windows XP?
  7. Yes, jinkazama Because there is new functions added, and two new lines translated needed. End of WPI_v8.6.6 lang_en.js: // v8.6+ lblNumberOfCores[lang] = ['Number Of Cores']; lblNumberOfLogicalProcessors[lang] = ['Number Of Logical Processors']; lblProductKey[lang] = ['Product Key']; lblKeyboardLayout[lang] = ['Keyboard Layout']; //------------------------------------------------------------------------------ Cheers and regards *Edit: Oops...Sorry missing some new words inside lang_fr.js (line 972) French language file updated: Regards *Edit: lang_fr.js given
  8. Many thanks Kels for the new release WPI_v.8.6.6 ! Here is the French language file updated: lang_fr.rar Thanks and regards *Edit: File updated next post!
  9. Many thanks for the Fix! Keep your awesome work! Regards
  10. The two codes works fine, Kels. Tested! Thanks and Regards
  11. Thanks bphlpt for your input! Let Kels make a choice for the next release! Cheers and regards.
  12. Thanks Watsup! Some help found here: http://inst.eecs.ber...su02/hw/js5.htm Test: we can save the file as HTA and launch it! Timer.hta Enjoy!
  13. @FuNKeR However, we can have the order number written correctly inside installer.log (WPI_Log.txt) if we don't add and use order number installation! The order number will be added by WPI! Example, without using order numbers and reboot option: WPI_Log.txt: Timer Fix (Installer.hta) when IE10 is integrated inside the image: http://www.msfn.org/...ost__p__1035124 Regards
  14. Have you tried using a full clean image without removing components?
  15. Testing and using WPI_v.8.6.5 works fine !!! Image WPI Reboot WPI_Log.txt Cheers and regards *Edit: Note: We can see the order number are changed, after the reboot!?...But the installation order is fine and all works fine.
  16. Inside WPI.hta I see this registry key isn't written inside the registry: WriteRegKey("HKEY_CURRENT_USER\\Software\\Microsoft\\Internet Explorer\\Download\\RunInvalidSignatures","dword:00000001","REG_DWORD"); 1 - The value must be changed inside WPI.hta to (line 116): WriteRegKey("HKEY_CURRENT_USER\\Software\\Microsoft\\Internet Explorer\\Download\\RunInvalidSignatures",1,"REG_DWORD"); 2 - And to restore the default value, add inside core.js (line 563): WriteRegKey("HKEY_CURRENT_USER\\Software\\Microsoft\\Internet Explorer\\Download\\RunInvalidSignatures",0,"REG_DWORD"); Regards
  17. I use this workaround to display the timer inside Installer.hta: Inside timers.js Replace function ins_iTimer() with: function ins_iTimer() { position="timers.js"; whatfunc="ins_iTimer()"; var timerID=null; var txt=""; var now=new Date(); var nowSecs=(now.getHours()*60*60) + (now.getMinutes()*60) + now.getSeconds(); var elapsedSecs=nowSecs - ins_startSecs; var hours=Math.floor(elapsedSecs/3600); elapsedSecs=elapsedSecs - (hours*3600); var minutes=Math.floor(elapsedSecs/60); elapsedSecs=elapsedSecs - (minutes*60); var seconds=elapsedSecs; txt=((hours < 10) ? "0" : "") + hours; txt += ((minutes < 10) ? ":0" : ":") + minutes; txt += ((seconds < 10) ? ":0" : ":") + seconds; document.getElementById("TimerDisplay").innerHTML=txt; timerID=setTimeout("ins_iTimer()",1000); // Update display } Tested and works fine for me! Thanks to share your result! *Edit: I spent days and days to find this workaround!
  18. Helping some friends, I see Microsoft solved the typo error!
  19. Error inside your Autounattend.xml x86 file: <component name="Microsoft-Windows-IE-InternetExplorer" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> *Edit: Could you attach your file? You may need to change the order inside <settings pass="windowsPE"> and check your file with WSIM !
  20. Add inside your Autounattend.xml file: <settings pass="windowsPE"> <ImageInstall> <OSImage> <InstallFrom> <MetaData wcm:action="add"> <Key>/IMAGE/NAME</Key> <Value>Windows 7 PROFESSIONAL</Value> </MetaData> </InstallFrom> <WillShowUI>OnError</WillShowUI> <InstallToAvailablePartition>false</InstallToAvailablePartition> </OSImage> </ImageInstall>
  21. More help: http://www.msfn.org/board/topic/87037-regional-settings-en-gb/page__view__findpost__p__587983 http://blogs.msdn.com/b/shawnste/archive/2011/11/09/user-locale-system-locale-ui-language-language-profile-amp-all-that.aspx http://msdn.microsoft.com/en-us/goglobal/bb964662.aspx http://technet.microsoft.com/en-us/library/dd744272(v=ws.10).aspx Create your own Autounattend.xml All-In-One (x86/amd64)
  22. *Note: This setting can only be applied during the specialize and oobeSystem configuration passes. To specify language and locale settings during the windowsPE pass, see the SystemLocale setting in the Microsoft-Windows-International-Core-WinPE component. *Note: This setting can only be applied during the specialize and oobeSystem configuration passes. To specify language and locale settings during the windowsPE pass, see the UserLocale setting in the Microsoft-Windows-International-Core-WinPE component. Extrated from: Unattended Windows Setup Reference for Windows 7.chm Example with my Autounattend.xml file <?xml version="1.0" encoding="utf-8"?> <unattend xmlns="urn:schemas-microsoft-com:unattend"> <settings pass="windowsPE"> <component name="Microsoft-Windows-International-Core-WinPE" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <SetupUILanguage> <UILanguage>fr-FR</UILanguage> </SetupUILanguage> <InputLocale>100c:0000100c</InputLocale> <SystemLocale>fr-CH</SystemLocale> <UILanguage>fr-FR</UILanguage> <UserLocale>fr-CH</UserLocale> </component>
  23. Try again...Works fine to download on the first page, and the link works! Cheers
  24. Here is the folder Right-Click.rar with the three files: zDrivers.txt; zFeatures.txt; zPackagelist.txt saved on my Desktop: http://www.mediafire.com/?fl9am1yhlplht First I mounted the image install.wim using .wimrightclick replacing the reg file you given above, but it was not needed... because this one is already inside the updated file: http://www.msfn.org/...post__p__958469 All works really fine. Thanks and regards
×
×
  • Create New...