Jump to content

myselfidem

Member
  • Posts

    2,515
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Switzerland

Everything posted by myselfidem

  1. I think you need to use quotes inside your .cmd! Like this: REGEDIT /S "%homedrive%\install\tweak.reg"
  2. I've made an "Windows 7 x86.iso" with 7Customizer on my computer "Windows 7 x64" with 21 updates and Drivers downlaoded at DriversPacks successfully; except two errors for 2 Drivers! I have the same two errors, like you, for the Drivers. You can see inside: "Windows\Logs\DISM\dism.log" these two errors. I think that these two drivers aren't compatibles with Windows 7! Maybe for you it's for others two Drivers! I think you can delete these two drivers inside: "Audio\Creative\7\" and "Audio\SoundMAX\" (or the two drivers don't work you have). However, you see inside the file "Audio_x86.txt" inside the file "DP_Audio_wnt6-x86_1004\x86\S": Maybe it's the reason that don't work for these two Drivers! I hope that will help you!
  3. @Jadestar Yes, I think that you can use multiple "Unattend.xml" on your DVD! You can inject a file "unattend.xml" inside your image mounted! And also use an "Autounattend.xml" at the root of your DVD. Some help here: http://technet.microsoft.com/en-us/library/cc749415(WS.10).aspx I hope that will help you!
  4. @THXMAN I've made a new test and all is fine! Like grabben said, you can make a "Windows 7 x32bits iso file" on a computer x64bits with no issues with 7Customizer! I've the same result like you inside the log.txt with 7Customizer: And the same lines inside "dism.log" about the architecture inside my x64bits computer: DISM.EXE: Host machine information: OS Version=6.1.7600, Running architecture=x86, Number of processors=4 2010-06-21 17:31:59, Info DISM.EXE: Executing command line: "C:\Program Files\Windows AIK\Tools\x86\Servicing\Dism.exe" It's strange but there is a reason who needed some search, but that seems correct. Maybe it's for the compatibily with the program and building the iso file! My computer is architecture=AMD64; and inside "dism.log" I see: architecture=x86! I've tried on "Sun VirtualBox x86" with an other computer x86, and works fine! I think I've get errors when I've tried to install my Win7iso x86 on my computer x64! Off course the new DVD made for x86 works on a computer x86! Maybe you can try to put the updates for Windows 7 x86 inside a folder named: "Updates" at the root of the parttion. And to be carefull with the drivers for Windows 7 x86!
  5. Maybe you can delete 7Customizer and make a new install. Expand 7Customizer_0.4.4.rar on the target partition and don't add any folders inside! Could you try to make a new time an iso file with 7Customizer for x86 on your computer? But, before delete the "dism.log" file inside "Windows\Logs\DISM\dism.log". A new one will be created and just attach this one here, please, and the "log.txt". You can name also the source folder: C:\Win7 like the name of the iso file. I think the problem is to make an Windows iso file x86 on a computer x64! I remember I've bad result and the installation fails, but I will make a new test!
  6. @THXMAN I see something stange inside your files: Inside Dism.log: Have you two computers? One x86 an an other x64? It's better to use a name for your iso file with max 16 characters, or a simple name, like "Win7", or you can get errors! And give a name for the folder at the root of your HDD, like this: C:\Win7. And copies inside all the content of your DVD Windows 7. I think you need to have the same architecture to use 7Customizer: OS x86 for Windows 7 x86; and OS x64 for Windows 7 x64! I hope that will help you.
  7. Thanks clivebuckwheat and thanks for all the members who give us help!
  8. Hello I've made successfully an unattended installation with Windows 7 where I can choose to install Windows 7 Home Premium or Windows 7 Professional or Windows 7 Ultimate: the correct Default keys are injected inside all the images! Works fine! I've delete 2 unwanted images: Windows 7 Starter and HomeBasic. At first, open with Notepad the file "ei.cfg" stored inside "sources" and delete just the line for the verion and save it: like this: All the availables images will be displayed at the installation and the user can make his choise! If you want to delete unwanted images you can use imagex.exe. Now you need to Set all the Default Keys for the images you keep and want. You must mount, set the correct Default Key you need for each version, dismount and commit all the images. You can find this one inside the file "product.ini" (inside the folder sources). Here is a batch I've created to do that more easy. Example for "Windows 7 Ultimate x86" with Windows 7 Starter and HomeBasic deleted: SetProductKeys.cmd (With two images deleted!) TITLE ===Set Default Product Keys for an Unattended Install== Cls @echo off Color 0A CLS @echo off REM This example is for Windows 7 Ultimate x86 with 5 Images REM Integrate Unattend.xml offline to an Mounted Image REM If you don't want use Autounattend.xml file at the root of your DVD REM DISM.exe /Image:C:\test /Apply-Unattend:C:\unattend.xml echo. REM You need to have Windows 7 WAIK installed on your computer echo. echo ==Delete unwanted Images== echo. REM Create Temp folder inside your target partition: Example => C:\test REM Sources files inside: Example here => C:\win7pro\ REM Change the Drive letter if you need echo. echo ==Delete Windows 7 STARTER Edition== echo. "C:\Program Files\Windows AIK\Tools\x86\imagex.exe" /delete C:\win7pro\sources\install.wim 1 /check pause to see if ERROR echo. echo ==Delete Windows 7 HOMEBASIC Edition== echo. "C:\Program Files\Windows AIK\Tools\x86\imagex.exe" /delete C:\win7pro\sources\install.wim 1 /check pause to see if ERROR echo. REM Now you have 3 Images availables and the rank is changed like this REM Image Index:1 => Windows 7 HOMEPREMIUM REM Image Index:2 => Windows 7 PROFESSIONAL REM Image Index:3 => Windows 7 ULTIMATE echo. echo ==Set ProductKeys for unattended install== echo. echo ==Mounting Image Index:1 Windows 7 HomePremium== echo. "C:\Program Files\Windows AIK\Tools\x86\Servicing\Dism.exe" /Mount-Wim /WimFile:"C:\win7pro\sources\install.wim" /Index:1 /MountDir:"C:\test" pause to see if ERROR echo. echo ==Set Default ProductKey for Windows 7 HomePremium== echo. "C:\Program Files\Windows AIK\Tools\x86\Servicing\Dism.exe" /Image:C:\test /Set-ProductKey:XXXXX-XXXXX-XXXXX-XXXXX-XXXXX pause to see if ERROR echo. echo ==Unmount and Commit Image Index:1 Windows 7 HomePremium== "C:\Program Files\Windows AIK\Tools\x86\Servicing\Dism.exe" /Unmount-Wim /MountDir:"C:\test" /commit pause to see if ERROR echo. echo ==Mounting Image Index:2 Windows 7 Professional== "C:\Program Files\Windows AIK\Tools\x86\Servicing\Dism.exe" /Mount-Wim /WimFile:"C:\win7pro\sources\install.wim" /Index:2 /MountDir:"C:\test" pause to see if ERROR echo. echo ==Set Default ProductKey for Windows 7 Professional== "C:\Program Files\Windows AIK\Tools\x86\Servicing\Dism.exe" /Image:"C:\test" /Set-ProductKey:XXXXX-XXXXX-XXXXX-XXXXX-XXXXX pause to see if ERROR echo. echo ==Unmount and Commit Image Index:2 Windows 7 Professional== "C:\Program Files\Windows AIK\Tools\x86\Servicing\Dism.exe" /Unmount-Wim /MountDir:"C:\test" /commit pause to see if ERROR echo. echo ==Mounting Image Index:3 Windows 7 Ultimate== "C:\Program Files\Windows AIK\Tools\x86\Servicing\Dism.exe" /Mount-Wim /WimFile:"C:\win7pro\sources\install.wim" /Index:3 /MountDir:"C:\test" pause to see if ERROR echo. echo ==Set Default ProductKey for Windows 7 Ultimate== "C:\Program Files\Windows AIK\Tools\x86\Servicing\Dism.exe" /Image:"C:\test" /Set-ProductKey:XXXXX-XXXXX-XXXXX-XXXXX-XXXXX pause to see if ERROR echo. echo ==Unmount and Commit Image Index:3 Windows 7 Ultimate== "C:\Program Files\Windows AIK\Tools\x86\Servicing\Dism.exe" /Unmount-Wim /MountDir:"C:\test" /commit pause to see if ERROR echo. echo ==Delete catalog files== DEL /F /Q "C:\win7pro\sources\install_Windows 7 STARTER.clg" DEL /F /Q "C:\win7pro\sources\install_Windows 7 HOMEBASIC.clg" pause echo. echo Set your Autounattend.xml at the root folder source before to launch the ISO file creation pause echo ==Create the ISO file== "C:\Program Files\Windows AIK\Tools\x86\oscdimg.exe" -h -u2 -m -b"c:\win7pro\boot\etfsboot.com" -lwin7pro c:\win7pro\ c:\win7pro.iso pause to see if ERROR REM After the installation is made the user need to activate the Windows version choosed with the valid key REM Validation needed online after 30 days @echo off exit If you get errors with an mounted image not correctly done, you can use a reg file: InstallTakeOwnership.reg (Thanks to maxXPsoft !) And use this command: "C:\Program Files\Windows AIK\Tools\x86\imagex.exe" /cleanup "c:\test" Before make your Autounattend.xml file and put this one at the root of the DVD: NO KEY IS NEEDED! Don't set a key inside the file "Autounattend.xml"! Then at the end of the command - there is a pause - and you can add the "Autounattend.xml" file (if you have forgotten to do that) and launch the process to create the ISO! You can create your ISO file and all is done! The user can choose the Windows version he want and set the valid key after 30 days. You can make the same batch for Windows x64. Be carefull to choose the correct path for Dism.exe, imagex.exe and oscdimg.exe! Then you can make an "All-In-One" DVD for Windows 7 x86/x64 and use only one "Autounattend.xml". You have one valid key for these two DVD (x86/x64). Inject all the default keys! As an example, here is my Autounattend.xml: <?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"> <SystemLocale>fr-FR</SystemLocale> <UserLocale>fr-FR</UserLocale> <UILanguage>fr-FR</UILanguage> <UILanguageFallback>fr-FR</UILanguageFallback> <InputLocale>100c:0000100c</InputLocale> </component> <component name="Microsoft-Windows-Setup" 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"> <UserData> <ProductKey> <Key></Key> </ProductKey> <Organization>particulier</Organization> <FullName>myselfidem</FullName> <AcceptEula>true</AcceptEula> </UserData> <ImageInstall> <OSImage> <InstallFrom> <MetaData wcm:action="add"> <Key>/IMAGE/NAME</Key> <Value></Value> </MetaData> </InstallFrom> </OSImage> </ImageInstall> </component> </settings> <settings pass="oobeSystem"> <component name="Microsoft-Windows-Shell-Setup" 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"> <UserAccounts> <LocalAccounts> <LocalAccount wcm:action="add"> <Name>myselfidem</Name> <Group>Administrators</Group> <Password> <PlainText>false</PlainText> <Value>xxxxxx</Value> </Password> </LocalAccount> </LocalAccounts> </UserAccounts> <OOBE> <HideEULAPage>true</HideEULAPage> <NetworkLocation>Home</NetworkLocation> <ProtectYourPC>1</ProtectYourPC> <HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE> </OOBE> </component> <component name="Microsoft-Windows-International-Core" 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"> <UILanguage>fr-FR</UILanguage> <UserLocale>fr-FR</UserLocale> <InputLocale>100c:0000100c</InputLocale> </component> </settings> <settings pass="specialize"> <component name="Microsoft-Windows-Shell-Setup" 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"> <AutoLogon> <Enabled>true</Enabled> <Username>myselfidem</Username> <Password> <PlainText>false</PlainText> <Value>xxxxxx</Value> </Password> <LogonCount>9999999</LogonCount> </AutoLogon> <TimeZone>W. Europe Standard Time</TimeZone> <ComputerName>Se7en</ComputerName> </component> </settings> </unattend> *If you use Windows System Image Manager (WSIM) delete the last line where you see the version of Windows! Delete this line inside Autounattend.xml: => <cpi:offlineImage cpi:source="wim:C:/Win7/sources/install.wim#Windows 7 Édition Intégrale" xmlns:cpi="urn:schemas-microsoft-com:cpi" /> I think once the validation is made for the Windows version choosen, it's only for this version. If you try to install with the same DVD an other version with the default key injected you need to do a new time the activation! But you can also save the file "Tokens.dat" after the activation to keep this one. Feel free to change this command (attachment: SetProductKeys.cmd, ready to use: Default Keys include!). Example with your Autounattend.xml x64 as attachment.. I hope that will help you. *Edit: New batch files SetProductKey.zip (English and French version): http://www.mediafire.com/?uss84mzbqo91q Enjoy!
  9. Hello Make a copy of the file "eng-refrence.lng" localised inside the folder "C:\7Customizer_0.4.4". You can make the translation with your language and save your new file .LNG (Chinese):Make two files for chinese simplified and traditional. Put these new files inside the folder "7Customizer\langs". When you run 7Customizer choose the language you want. At first time, after you've made the choise for your language, restart 7Customizer to take effect! Now you can see your language. Be carefull with the translation otherwise you can get errors! I hope that will help you!
  10. I think I've found an idea on the Web, but I must make some tests and I give you the result!
  11. I've attached the dism.log I have recommended him to the WAIK for Windows 7 to remove and reinstall. I have also recommended to him the files of the customizers to remove and reinstall. I have also recommended him to copy the Windows 7 files to c: \ win7x64 so they do not lie below the installation folder of 7Customizers. He also writes that in his log file of the customizer also always something of a path of d: \ w7rtm \ ... begins is, but that can not agree as this one DVD drive that is no media. If you know this error or a solution for this? regard beatmaster I think it would be nice if you give also a feed back to the MSFN Forum and not only on your Web site, for your members! Thank you for your understanding. myselfidem
  12. I down know what is xp2600eval. But for your HP CD-writer CD12 series maybe you need to upgrade the firmware and be carefull to install the good one for XP Pro 64 bits!
  13. @clivebuckwheat Of course, I suggest you to upgrade the "Windows 7 professionnel" because I've seen that your are working inside an enterprise! If you want add some language packs for your personnal use, as cluberti said, you can. You can download the language packs here: Language Packs x86 and x64 If you want convert .exe files to .cab files, you can use a program made by Blue4603 and download it at the layout: exe2cab.exe Method: How to Add local packs: Add and remove local packs More help here: Tutorial http://technet.microsoft.com/en-us/library/dd755995(WS.10).aspx I hope that will help you!
  14. Sincerely, I think the best way is to upgrade your Windows version 7 Professional to Windows 7 Ultimate if you want absolutly add those language packs! I've made some search on the Web and I see there is some methods, but it's at your own risk! For the sysprep method I havn't tested and I don't use this method for me. Some help for To add a language pack using DISM
  15. The language packs are only available for Windows 7 Ultimate and Enterprise! http://support.micro...kb/972813/en-us How to add Language Interface Packs. To install a LIP in an unattended Windows installation: http://technet.microsoft.com/en-us/library/dd799270(WS.10).aspx I hope that will help you!
  16. I am not an expert, but I try to give some help Maybe you can try this: <InputLocale>0409:00000409</InputLocale> And this:no space inside %ProgramFiles(x86)% <SynchronousCommand wcm:action="add"> <CommandLine>cscript //b "%ProgramFiles(x86)%\Microsoft Office\Office14\ospp.vbs" /inpkey:PRODUCT KEY</CommandLine> <Order>4</Order> <RequiresUserInput>false</RequiresUserInput> </SynchronousCommand> <SynchronousCommand wcm:action="add"> <CommandLine>cscript //b "%ProgramFiles(x86)%\Microsoft Office\Office14\ospp.vbs" /act</CommandLine> <Order>5</Order> More help here: http://blog.brianleejackson.com/sysprep-a-windows-7-machine-%E2%80%93-start-to-finish-v2 (Step #11 and #12) I hope that will help you!
  17. Yes, I suppose so! Thank you!
  18. I don't remember if i've made my presentation? I do that now and excuse-me if I've made twice. I'm Spanish. I was born in France. I live in Switzlerland (Geneva). Now I am Swiss. I continue to learn English... I've found many help inside MSFN. Thanks! Regards
  19. If you need WAIK, you can download here: http://www.microsoft.com/downloads/details.aspx?displaylang=en&FamilyID=696dd665-9f76-4177-a811-39c26d3b3b34
  20. If I use imagex.exe /delete C:\Win7DVD\sources\install.wim 1 That works fine! I think there is only one <IMAGE INDEX="1"> because there is only one "install.wim". And 5 numbers versions of Images availables inside (Windows 7 x86 Ultimate with this example). But the numbers and the order (place, rank) of Images availables changes after the first one deleted. The possibility, in this case is to delete another time "install.wim 1". With my example I always delete "install.wim 1" and the catalogs files I don't need! <IMAGE INDEX="1"> <DIRCOUNT>9589</DIRCOUNT> <FILECOUNT>47584</FILECOUNT> Number of Available Images: 3 Reading image indiceis Reading image displaynames Reading image names Reading image architectures Reading image edition IDs - using EDITIONID Available Images: Begin Windows 7 Édition Familiale Premium Windows 7 Professionnel Windows 7 Édition Intégrale Available Images: End In my case if I want delete "Windows 7 Starter Edition" and after "Windows 7 Edition Familiale Basique", I use twice the command : imagex /delete C:\Win7DVD\sources\install.wim 1. And I have the result desired. But after if I choose to delete "install.wim 3" Windows 7 Ultimate will be deleted because the rank have changed (now rank 3 and not 5)! It's needed to be carefull, because if you delete "install.wim 2" the numbers and the order of images availables changes! And you have a bad result! It's needed to check the news numbers of each images availables! I think the number match the image, but the rank changes every time when an image is deleted. *Edit:other help:Remove images
  21. And if you choose to delete some Images inside the folder "install.wim", with imagex.exe, you can delete also the catalogs files you don't need. Example: "install_Windows 7 STARTER.clg"; "install_Windows 7 HOMEBASIC.clg" if you have deleted these Images for Windows 7 Starter Edition and Homebasic Edition! Or you can use imagexgui, like kelsenellenelvian had suggested to delete the Images inside install.wim! I hope that will give you some help!
  22. Thanks for your fast reply and your help! I will try gimagexgui. Thanks
  23. Hello I have a Windows 7 x86 Ultimate with all versions inside (5). And the source is install.wim.
  24. Yes! You've understand what I mean! But I don't know why? I think it's the reason the installation numbers version doesn't match for an installation! Yes it's needed to check a new time the version you want to delete. Or maybe there is another way?
×
×
  • Create New...