Jump to content

myselfidem

Member
  • Posts

    2,515
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Switzerland

Everything posted by myselfidem

  1. No, it's OK! Just for InputLocale. And if you want to launch the vbs file change: </RunSynchronousCommand> - <RunSynchronousCommand wcm:action="add"> <Path>WScript.exe c:\windows\ClaraLaptop.vbs</Path> <Order>4</Order> You can see inside this example the last line (example): http://www.brianleejackson.com/download/7_sysprep/7_enterprise_x86_sysprep.xml "OfflineImage" is the source of your Windows Image Professional Have you check this line with WISM?
  2. @Alroze Have you created the folders $OEM$? More help here for audit mode http://technet.microsoft.com/en-us/library/dd744512(WS.10).aspx#UsingAnswerFilesWithSysprep http://technet.microsoft.com/en-us/library/dd799305(WS.10).aspx http://technet.microsoft.com/en-us/library/dd744501(WS.10).aspx I hope that will help you
  3. Hello I see it's better to use: <InputLocale>0409:00000409</InputLocale> Because it seems that this value sometimes fails: <InputLocale>en-us</InputLocale> For your folder name where you install all the files for Windows 7 Pro, try to give a little name, like "WinPro" (don't use space)at the root of your HDD. It seems that there is an error inside the last line for the catalog file inside sysprep.xml: It must be like this: install.wim#Windows 7 Professional
  4. Hello I have updated the layout 7Customizer French guide 7Customizer French guide I hope that will help you!
  5. Hello You can try to make changes inside the file Autounattend.xml. Once you have done yours settings just choose "Apply" and don't make an ISO file immediatly. Once it's done you can see the .xml file inside your source folder for Windows. You can add this changes (example for Windows 7 Ultimate x86): <settings pass="oobeSystem"> <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"> <SystemLocale>fr-FR</SystemLocale> <UILanguage>fr-FR</UILanguage> <UserLocale>100c:0000100c</UserLocale> </component> <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> <LogonCount>9999999</LogonCount> <Username>myselfidem</Username> <Password> <Value>xxxxxx</Value> <PlainText<false</PlainText> </Password> </AutoLogon> <UserAccounts> <LocalAccounts> <LocalAccount wcm:action="add"> <Password> <PlainText>false</PlainText> <Value>xxxxxx</Value> </Password> <Group>Administrators</Group> <DisplayName>myselfidem</DisplayName> <Name>myselfidem</Name> </LocalAccount> </LocalAccounts> </UserAccounts> Then you can create your ISO file with 7Customizer. I hope that will help you!
  6. Hello When you use Windows System Image Manager (WSIM) for check your unattended file choose before your version Windows catalog! My example were for Windows 7 Ultimate x86. Yours is Windows 7 Professional. Try to set your unattended xml "at his place" ( source Windows folder) and don't set on the desktop! And choose the appropiate catalog file.
  7. Hello Set inside pass oobeSystem: <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"> <OOBE> <HideEULAPage>true</HideEULAPage> <NetworkLocation>Other</NetworkLocation> <ProtectYourPC>2</ProtectYourPC> </OOBE> You can find more info here: *Edit: Example for Windows 7 Ultimate x86
  8. Hello Here is an example made by the Se7en_UA6.2.9.exe (XML Editor), made by maxXPsoft, when you choose AuditUser mode: Inside pass specialize <settings pass="auditSystem"> <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> <LogonCount>2</LogonCount> <Username>myselfidem</Username> </AutoLogon> <Display> <ColorDepth>32</ColorDepth> <HorizontalResolution>1280</HorizontalResolution> <VerticalResolution>1024</VerticalResolution> </Display> <UserAccounts> <LocalAccounts> <LocalAccount wcm:action="add"> <Password> <Value></Value> <PlainText>true</PlainText> </Password> <Group>Administrateurs</Group> <Name>myselfidem</Name> </LocalAccount> </LocalAccounts> </UserAccounts> </component> </settings> <settings pass="auditUser"> <component name="Microsoft-Windows-Deployment" 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"> <RunSynchronous> <RunSynchronousCommand wcm:action="add"> <Order>400</Order> <Path>cmd /C start /wait %systemdrive%\Install\AuditUser.cmd</Path> </RunSynchronousCommand> </RunSynchronous> </component> And a file OOBEAudit.xml is created for the Audit mode inside: Cleanup.cmd OOBEAudit.xml <?xml version="1.0" encoding="utf-8"?> <unattend xmlns="urn:schemas-microsoft-com:unattend"> <settings pass="oobeSystem"> <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"> <SystemLocale>fr-FR</SystemLocale> <UILanguage>fr-FR</UILanguage> <UserLocale>100c:0000100c</UserLocale> </component> <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"> <Display> <ColorDepth>32</ColorDepth> <HorizontalResolution>1280</HorizontalResolution> <VerticalResolution>1024</VerticalResolution> </Display> <RegisteredOrganization>Se7en_UA</RegisteredOrganization> <RegisteredOwner>myselfidem</RegisteredOwner> <TimeZone>W. Europe Standard Time</TimeZone> <AutoLogon> <Enabled>true</Enabled> <LogonCount>9999999</LogonCount> <Username>Administrateur</Username> <Password> <Value>xxxxxx</Value> <PlainText>true</PlainText> </Password> </AutoLogon> <FirstLogonCommands> <SynchronousCommand wcm:action="add"> <Order>1</Order> <Description>Running FirstLog.cmd</Description> <CommandLine>cmd /C start /wait %systemdrive%\Install\FirstLog.cmd</CommandLine> </SynchronousCommand> </FirstLogonCommands> <OEMInformation> <Logo>%WINDIR%\System32\oemlogo.bmp</Logo> <Manufacturer>Se7en_UA</Manufacturer> <Model>Unattended Seven</Model> <SupportHours>Anytime, visit the Forums</SupportHours> <SupportPhone>BR549</SupportPhone> <SupportURL>http://people.consolidated.net/veeger/</SupportURL> </OEMInformation> <OOBE> <HideEULAPage>true</HideEULAPage> <NetworkLocation>Home</NetworkLocation> <ProtectYourPC>1</ProtectYourPC> </OOBE> <UserAccounts> <LocalAccounts> <LocalAccount wcm:action="add"> <Password> <PlainText>true</PlainText> <Value>xxxxx</Value> </Password> <Group>Administrators</Group> <DisplayName>myselfidem</DisplayName> <Name>myselfidem</Name> </LocalAccount> </LocalAccounts> </UserAccounts> <VisualEffects> <FontSmoothing>ClearType</FontSmoothing> </VisualEffects> </component> </settings> </unattend> There is two .xml files at the root of the DVD: AutoUnattend.xml and OOBEAudit.xml Maybe that can help you. Thanks very much to maxXPsoft for his nice and very good software!
  9. Hello Max It seems like an error if I choose AuditUser mode inside "Cleanup.cmd"; maybe it is correct: REM %windir%\system32\sysprep\sysprep.exe.exe /generalize /oobe /reboot /quiet /unattend:%DVDroot%\OOBEAudit.xml Regards
  10. You can see some help inside: Unattended Windows Setup reference for Windows 7.chm include with WAIK for Windows 7 Extract: There is two scenarios. You can have more help here: I hope that will help you.
  11. Hello You can add the values for locales and Time zone(take care to choose for amd64, here is an example for x86!) <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>en-US</UILanguage> </SetupUILanguage> <settings pass="oobeSystem"> <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"> <SystemLocale>en-US</SystemLocale> <UILanguage>en-US</UILanguage> <UserLocale>0409:00000409</UserLocale> </component> <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"> <Display> <ColorDepth>32</ColorDepth> <HorizontalResolution>1280</HorizontalResolution> <VerticalResolution>1024</VerticalResolution> </Display> <RegisteredOrganization>Se7en_UA</RegisteredOrganization> <RegisteredOwner>myselfidem</RegisteredOwner> <TimeZone>Your Time Zone here</TimeZone> For the drivers I need to make some search!
  12. Hello Maybe there is an error here: <InputLocale>0409:00000409</InputLocale>
  13. Thanks Just an suggestion. Maybe you can try to make differents "Autounattend.xml" for each version you want to install and put them inside a floppy or USB key? You can have in this way only one Windows 7 with all versions on your DVD, and choose the version you want to install with the specific "Autounattend.xml"! Change just the name for the others, like: "Autounattend_Premium.xml"; "Autounattend_Pro.xml" and the one you want use "Autounattend.xml". Some help here: I hope that will help you!
  14. Hello cat2115 Yes it's correct, you must create a folder nammed "APPS" at the root of any drive and inside the subfolders for each programs you want to install with unattended method. Also you can see inside the file "Appswitch.dat" (localized inside: %systemdrive%\Se7en_UA\Appswitch.dat) commands lines already existing for many applications. If you want add some ones news, add lines for these one inside "Appswitch.dat" with the same name you use for the subfolder (example: APPS\ATI and inside Appswitch.dat: [ATI] and add the command lines; like there are writing for the others applications, with your news unattended switches). You can take a look here: When you use Se7en_UA App Installer just choose the drive letter you want for the unattended install (C:\ D:\ H:\).That means the Se7en_UA Installer is looking inside your Hard Drive or your DVD. All applications inside APPS folder and the folder APPS itself will be copied inside your Windows source: %systemdrive%\Se7en_UA\uaDVD\APPS. *Edit: Example for ATI and Adobe Reader inside Appswitch.dat I hope that will help you!
  15. And same successfull result with Windows 7 Enterprise x86 French version!
  16. Hello You can find the logs inside "%systemdrive%\Windows\Panther", and also the unattend.xml used for the silent install.
  17. 7Customizer can`t mount Win 7 Version with only one Image in the install.wim. And your Enterprise Edition had only this one Install.wim Image. beatmaster Is there any solution for that problem? Just for an test! I've tried successfully to install "Windows 7 Enterprise x86" 90 days evaluate (en-us version) with 7Customizre_0.4.4! I've expand the iso file and put this on the target partition and give the name "WinE" for the folder for all the files. I skip the key with unattended answer file. I've made with Windows XP SP3, as you can see (same architecture x86). Here is the log file:
  18. It was about this suggestion, maybe it's yours! Maybe the idea is to make 5 DVD for each Windows 7 x86 Version you want to install. In this way Keep only the .clg file you need and deleete the others. You can see these one inside "sources\install_Windows 7 ULTIMATE.clg" (for example) and make the appropriate "Autounattend.xml" including this version to skip the dialog box asking the version to install. And 4 DVD for Windows 7 x64. It's just an idea. *Edit: Also needed to modify the file "ei.cfg", inside "sources" with the version you choose!
  19. I've made some search about your question. Could you give the link where you found this example, please and I can try on my computer? However I've read it's not really working good for many people, except someone but I don't why: no explaination. Thanks
  20. Hello You can also see the default keys here: Cluberti.com
  21. I can't sent you an PM. If you want I can try to translate your software in French language! Regards
  22. In these cases you can use ERD Commander: http://blogs.technet.com/b/shanecothran/archive/2009/11/09/how-to-create-a-erd-commander-2009-boot-disk.aspx It's include inside Microsoft Desktop Optimization Pack (MDOP): http://technet.microsoft.com/en-us/subscriptions/downloads/default.aspx?PV=42:178
  23. Maybe the order isn't important? To skip the window asking the key for the installation, each version has his key. You can use the keys for an unattended install for the version you want inside the folder "sources\product.ini". You can see inside the file product.ini all the keys used for an unattended install and skip the window during the unattended install. If you have the originals Windows 7 versions or ISO file. And the valid key is used later! I hope that will help you!
  24. Depends what version you want install you can see inside the file "product.ini" and choose the key for the product you want for Windows 7 unattended install! You can use these keys for and unattended install and no dialog box is displayed asking the key! The file is inside: "sources\product.ini"
×
×
  • Create New...