Jump to content

myselfidem

Member
  • Posts

    2,515
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Switzerland

Everything posted by myselfidem

  1. Maybe your downloaded file is corrupted! Uninstall RT Se7en Lite, download a new time: RT Se7en Lite 1.7.0 RC x64 http://www.pub.rt7lite.com/7lite-rc-beta-1726-dec6-10-stable/rt_7_lite_win7_Vista_x64.exe Install and try again!
  2. Unattended Windows Setup Reference for Windows 7.chm UEFI-Based Systems The following XML output for the DiskConfiguration setting shows partition modifications for a Unified Extensible Firmware Interface (UEFI)-based computer, including an EFI System Partition (ESP), the Microsoft Reserved partition (MSR), a recovery partition, and a Windows partition. The recovery partition is set with the Utility partition type, and does not appear with a drive letter in Windows. <DiskConfiguration> <WillShowUI>OnError</WillShowUI> <Disk> <DiskID>0</DiskID> <WillWipeDisk>true</WillWipeDisk> <CreatePartitions> <CreatePartition> <!-- Create the EFI partition --> <Order>1</Order> <Type>EFI</Type> <Size>100</Size> </CreatePartition> <!-- Create the Recovery partition --> <CreatePartition> <Order>2</Order> <Type>Primary</Type> <Size>200</Size> </CreatePartition> <!-- Create the MSR partition --> <Order>3</Order> <Type>MSR</Type> <Size>128</Size> </CreatePartition> <!-- Create the Windows partition and fill the rest of the hard disk --> <CreatePartition> <Order>4</Order> <Type>Primary</Type> <Extend>true</Extend> </CreatePartition> </CreatePartitions> <ModifyPartitions> <!-- Modify the system partition --> <ModifyPartition> <Order>1</Order> <PartitionID>1</PartitionID> <Active>true</Active> <Format>FAT32</Format> <Label>System</Label> </ModifyPartition> <!-- Modify the recovery partition --> <ModifyPartition> <Order>2</Order> <PartitionID>2</PartitionID> <Format>NTFS</Format> <Label>Recovery</Label> <TypeID>e3c9e316-0b5c-4db8-817d-f92df00215ae</TypeID> </ModifyPartition> <!-- The MSR partition does not need to be modified --> <!-- Modify the Windows partition --> <ModifyPartition> <Order>3</Order> <PartitionID>4</PartitionID> <Format>NTFS</Format> <Label>Windows</Label> </ModifyPartition> </ModifyPartitions> </Disk> </DiskConfiguration>
  3. More help: http://7zsfx.info/en/ %%T - full extraction path (temp folder=%temp%) With my example working fine installing silently Microsoft OFFICE 2007 STANDARD: RunProgram="setup.exe /config .\STANDARDR.WW\config.xml" ( .\ = temp folder [%temp%]) *Edit: Examples about the temp folders path. Many thanks Kels
  4. However, check if you have installed the right software for Windows 7 x64: http://www.rt7lite.com/downloads.html
  5. I spend many time trying to create partitions like is explained inside "Unattended Windows Setup Reference for Windows 7.chm: - Unattended Installation Settings Reference - Components - Microsoft-Windows-Setup - DiskConfiguration - Disk - ModifyPartition - Extend Whithout success and always errors! It seems there is an error inside the .chm document!? But if I change like this, works fine: <?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> <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"> <Diagnostics> <OptIn>false</OptIn> </Diagnostics> <DiskConfiguration> <Disk wcm:action="add"> <DiskID>0</DiskID> <WillWipeDisk>true</WillWipeDisk> <CreatePartitions> <!-- Create the recovery partition --> <CreatePartition wcm:action="add"> <Order>1</Order> <Extend>false</Extend> <Type>Primary</Type> <Size>200</Size> </CreatePartition> <!-- Create the utility partition --> <CreatePartition wcm:action="add"> <Order>2</Order> <Size>5000</Size> <Type>Primary</Type> </CreatePartition> <!-- Create the system partition --> <CreatePartition wcm:action="add"> <Order>3</Order> <Size>100</Size> <Type>Primary</Type> </CreatePartition> <!-- Create the extended partition --> <CreatePartition wcm:action="add"> <Order>4</Order> <Extend>true</Extend> <Type>Extended</Type> </CreatePartition> <!-- Create the Windows partition --> <CreatePartition wcm:action="add"> <Order>5</Order> <Size>10000</Size> <Type>Logical</Type> </CreatePartition> <!-- Create the data partition, with a size of 100. This will be overwritten in the Modify section --> <CreatePartition wcm:action="add"> <Order>6</Order> <Type>Logical</Type> <Extend>false</Extend> <Size>100</Size> </CreatePartition> </CreatePartitions> <!-- Modify the recovery partition --> <ModifyPartitions> <ModifyPartition wcm:action="add"> <Order>1</Order> <PartitionID>1</PartitionID> <Format>NTFS</Format> <Label>Recovery</Label> <TypeID>0x27</TypeID> </ModifyPartition> <!-- Modify the utility partition --> <ModifyPartition wcm:action="add"> <Order>2</Order> <PartitionID>2</PartitionID> <Format>NTFS</Format> <Label>Utility</Label> <Letter>U</Letter> </ModifyPartition> <!-- Modify the system partition --> <ModifyPartition wcm:action="add"> <PartitionID>3</PartitionID> <Active>true</Active> <Order>3</Order> <Label>System</Label> <Format>NTFS</Format> </ModifyPartition> <!-- The extended partition does not need to be modified --> <!-- Modify the Windows partition --> <ModifyPartition wcm:action="add"> <Order>4</Order> <Format>NTFS</Format> <!-- I CHANGED the partition ID number to --> <PartitionID>4</PartitionID> <Label>Windows</Label> <Letter>C</Letter> </ModifyPartition> <!-- Modify the data partition --> <ModifyPartition wcm:action="add"> <Order>5</Order> <Format>NTFS</Format> <!-- I CHANGED the partition ID number to --> <PartitionID>5</PartitionID> <Label>Data</Label> <Letter>D</Letter> <Extend>true</Extend> </ModifyPartition> </ModifyPartitions> </Disk> </DiskConfiguration> <Display> <ColorDepth>32</ColorDepth> <HorizontalResolution>1280</HorizontalResolution> <VerticalResolution>1024</VerticalResolution> <RefreshRate>60</RefreshRate> </Display> <ImageInstall> <OSImage> <InstallFrom> <MetaData wcm:action="add"> <Key>/IMAGE/NAME</Key> <Value>Windows 7 ULTIMATE</Value> </MetaData> </InstallFrom> <InstallTo> <DiskID>0</DiskID> <PartitionID>4</PartitionID> </InstallTo> <WillShowUI>OnError</WillShowUI> <InstallToAvailablePartition>false</InstallToAvailablePartition> </OSImage> </ImageInstall> <UserData> <AcceptEula>true</AcceptEula> <FullName>myselfidem</FullName> <Organization>particulier</Organization> <ProductKey> <Key>XXXXX-XXXXX-XXXXX-XXXXX-XXXXX</Key> <WillShowUI>OnError</WillShowUI> </ProductKey> </UserData> <EnableFirewall>true</EnableFirewall> </component> <component name="Microsoft-Windows-PnpCustomizationsWinPE" 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"> <DriverPaths> <PathAndCredentials wcm:action="add" wcm:keyValue="1"> <Path>$WinPEDriver$/Path> </PathAndCredentials> </DriverPaths> </component> </settings> <settings pass="offlineServicing"> <component name="Microsoft-Windows-LUA-Settings" 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"> <EnableLUA>false</EnableLUA> </component> </settings> <settings pass="generalize"> <component name="Microsoft-Windows-PnpSysprep" 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"> <PersistAllDeviceInstalls>true</PersistAllDeviceInstalls> </component> </settings> <settings pass="specialize"> <component name="Microsoft-Windows-Security-SPP-UX" 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"> <SkipAutoActivation>true</SkipAutoActivation> </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"> <ComputerName>Se7en</ComputerName> <ProductKey>XXXXX-XXXXX-XXXXX-XXXXX-XXXXX</ProductKey> <RegisteredOwner>Full Name</RegisteredOwner> <Display> <ColorDepth>32</ColorDepth> <HorizontalResolution>1280</HorizontalResolution> <VerticalResolution>1024</VerticalResolution> <RefreshRate>60</RefreshRate> </Display> </component> </settings> <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"> <UILanguage>fr-FR</UILanguage> <UserLocale>fr-CH</UserLocale> <InputLocale>100c:0000100c;o40c:0000040c</InputLocale> </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> <RefreshRate>60</RefreshRate> </Display> <RegisteredOwner>Full Name</RegisteredOwner> <TimeZone>W. Europe Standard Time</TimeZone> <AutoLogon> <Enabled>true</Enabled> <LogonCount>9999999</LogonCount> <Username>myselfidem</Username> <Password> <Value></Value> <PlainText>true</PlainText> </Password> </AutoLogon> <OOBE> <HideEULAPage>true</HideEULAPage> <NetworkLocation>Work</NetworkLocation> <ProtectYourPC>3</ProtectYourPC> <HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE> </OOBE> <UserAccounts> <LocalAccounts> <LocalAccount wcm:action="add"> <Password> <PlainText>true</PlainText> <Value></Value> </Password> <Group>Administrators</Group> <DisplayName>myselfidem</DisplayName> <Name>myselfidem</Name> </LocalAccount> </LocalAccounts> </UserAccounts> <VisualEffects> <FontSmoothing>ClearType</FontSmoothing> </VisualEffects> <WindowsFeatures> <ShowInternetExplorer>true</ShowInternetExplorer> <ShowMediaCenter>true</ShowMediaCenter> <ShowWindowsMediaPlayer>true</ShowWindowsMediaPlayer> </WindowsFeatures> </component> <component name="Microsoft-Windows-Sidebar" 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"> <Gadget1>%PROGRAMFILES%\Windows Sidebar\Gadgets\Clock.Gadget</Gadget1> <Gadget2>%PROGRAMFILES%\Windows Sidebar\Gadgets\Calendar.Gadget</Gadget2> <Gadget3>%PROGRAMFILES%\Windows Sidebar\Gadgets\Weather.Gadget</Gadget3> </component> </settings> </unattend> <!--Customized by myselfidem. Fully unattended with 5 partitions = C:\Windows D:\Data and U:\Utility (2 hidden partitions: Recovery and System)--> <!--And one Aministrator without password--> Image 5 Partitions (2 hidden)
  6. Maybe that can help you adding inf file inside config.txt, with this example: http://www.msfn.org/...post__p__947388 With config.xml file I use config.txt for Office 2007 Standard, like this: config.txt ;!@Install@!UTF-8! GUIMode="2" RunProgram="setup.exe /config .\STANDARDR.WW\config.xml" ;!@InstallEnd@! The same temp path is writed inside my config.xml file! More help using msi file, adapt with config.txt: http://www.msfn.org/board/topic/111457-nod32-v30621-silent-install-problems/ http://www.en.nod32.ch/support/faq.php
  7. You can use "reverse integration", using Sysprep.exe! You can find help here: http://www.wincert.net/forum/index.php?/topic/7384-video-windows-7-aikopk-deployment-101-updated/ Download and watch the videos!
  8. Sorry, but I don't understand! If I want also install this msi file I can use successfully Windows Post Install Wizard (WPI)! *Edit: I'm guessing it was about the right topic! However silent switches are needed! Cheers
  9. This isn't the good topic! Please post here: http://www.msfn.org/board/forum/167-unattended-windows-7server-2008r2/ Yu can use: msiexec.exe /i <path to msi file>\wpt_x86.msi /qn
  10. 7Customizer must be approved by Norton Security and blue4603 can send a "dispute" to Symantec to check his software, like I made with 7zip SFX Maker 3.2.exe. Because now 7Customizer is always removed when I launch the software!!!!!!!! http://community.nor...ion/td-p/232155 Here is the answer I received about 7zip SFX Maker 3.2.exe Now this sofware is approved by Symantec.... Cheers *Edit: This trouble occurs often with UPX compression!! https://submit.symantec.com/whitelist/isv/
  11. Infos about Audit mode: http://technet.microsoft.com/en-us/library/cc722413(WS.10).aspx http://technet.microsoft.com/en-us/library/cc749317(WS.10).aspx
  12. You can also find help here: Create your own Autounattend.xml AIO Example (adapt to your needs!): You will have only 2 dialog boxes: Operating System to install (x86 or amd64) and DiskConfiguration! Autounattend.xml AIO (x86/amd64) Ultimate <?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>de-DE</UILanguage> </SetupUILanguage> <InputLocale>0407:00000407</InputLocale> <SystemLocale>de-DE</SystemLocale> <UILanguage>de-DE</UILanguage> <UserLocale>de-DE</UserLocale> </component> <component name="Microsoft-Windows-International-Core-WinPE" 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"> <SetupUILanguage> <UILanguage>de-DE</UILanguage> </SetupUILanguage> <InputLocale>0407:00000407</InputLocale> <SystemLocale>de-DE</SystemLocale> <UILanguage>de-DE</UILanguage> <UserLocale>de-DE</UserLocale> </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"> <Diagnostics> <OptIn>false</OptIn> </Diagnostics> <DiskConfiguration> <WillShowUI>Always</WillShowUI> </DiskConfiguration> <Display> <ColorDepth>32</ColorDepth> <HorizontalResolution>1280</HorizontalResolution> <VerticalResolution>1024</VerticalResolution> <RefreshRate>60</RefreshRate> </Display> <DynamicUpdate> <Enable>false</Enable> <WillShowUI>Never</WillShowUI> </DynamicUpdate> <ImageInstall> <OSImage> <WillShowUI>Always</WillShowUI> </OSImage> </ImageInstall> <UserData> <ProductKey> <WillShowUI>OnError</WillShowUI> <Key>XXXXX-XXXXX-XXXXX-XXXXX-XXXXX</Key> </ProductKey> <AcceptEula>true</AcceptEula> <FullName>Modano</FullName> <Organization>Modano-Inc</Organization> </UserData> <EnableFirewall>true</EnableFirewall> </component> <component name="Microsoft-Windows-Setup" 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"> <Diagnostics> <OptIn>false</OptIn> </Diagnostics> <DiskConfiguration> <WillShowUI>Always</WillShowUI> </DiskConfiguration> <Display> <ColorDepth>32</ColorDepth> <HorizontalResolution>1280</HorizontalResolution> <VerticalResolution>1024</VerticalResolution> <RefreshRate>60</RefreshRate> </Display> <DynamicUpdate> <Enable>false</Enable> <WillShowUI>Never</WillShowUI> </DynamicUpdate> <ImageInstall> <OSImage> <WillShowUI>Always</WillShowUI> </OSImage> </ImageInstall> <UserData> <ProductKey> <WillShowUI>OnError</WillShowUI> <Key>XXXXX-XXXXX-XXXXX-XXXXX-XXXXX</Key> </ProductKey> <AcceptEula>true</AcceptEula> <FullName>Modano</FullName> <Organization>Modano-Inc</Organization> </UserData> <EnableFirewall>true</EnableFirewall> </component> </settings> <settings pass="specialize"> <component name="Microsoft-Windows-Security-SPP-UX" 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"> <SkipAutoActivation>true</SkipAutoActivation> </component> <component name="Microsoft-Windows-Security-SPP-UX" 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"> <SkipAutoActivation>true</SkipAutoActivation> </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"> <ComputerName>Se7en</ComputerName> <TimeZone>E. South America Standard Time</TimeZone> </component> <component name="Microsoft-Windows-Shell-Setup" 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"> <ComputerName>Se7en</ComputerName> <TimeZone>E. South America Standard Time</TimeZone> </component> <component name="Microsoft-Windows-IE-InternetExplorer" 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"> <DisableOOBAccelerators>true</DisableOOBAccelerators> <DisableFirstRunWizard>true</DisableFirstRunWizard> <EnableLinksBar>false</EnableLinksBar> <FilterLevel>High</FilterLevel> <Home_Page>http://www.google.br</Home_Page> <BlockPopups>yes</BlockPopups> <SuggestedSitesEnabled>false</SuggestedSitesEnabled> <PlaySound>True</PlaySound> <ShowInformationBar>true</ShowInformationBar> <ShowMenuBar>true</ShowMenuBar> </component> <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"> <DisableOOBAccelerators>true</DisableOOBAccelerators> <DisableFirstRunWizard>true</DisableFirstRunWizard> <EnableLinksBar>false</EnableLinksBar> <FilterLevel>Medium</FilterLevel> <Home_Page>http://www.google.br</Home_Page> <BlockPopups>yes</BlockPopups> <SuggestedSitesEnabled>false</SuggestedSitesEnabled> <PlaySound>True</PlaySound> <ShowInformationBar>true</ShowInformationBar> <ShowMenuBar>true</ShowMenuBar> </component> </settings> <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"> <InputLocale>0407:00000407</InputLocale> <UILanguage>de-DE</UILanguage> <UserLocale>de-DE</UserLocale> </component> <component name="Microsoft-Windows-International-Core" 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"> <InputLocale>0407:00000407</InputLocale> <UILanguage>de-DE</UILanguage> <UserLocale>de-DE</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"> <TimeZone>E. South America Standard Time</TimeZone> <RegisteredOwner>Modano</RegisteredOwner> <Display> <ColorDepth>32</ColorDepth> <HorizontalResolution>1280</HorizontalResolution> <VerticalResolution>1024</VerticalResolution> <RefreshRate>60</RefreshRate> </Display> <OOBE> <HideEULAPage>true</HideEULAPage> <HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE> <NetworkLocation>Work</NetworkLocation> <ProtectYourPC>3</ProtectYourPC> </OOBE> <AutoLogon> <Password> <Value>qwertzuiop</Value> <PlainText>true</PlainText> </Password> <Enabled>true</Enabled> <LogonCount>9999999</LogonCount> <Username>Modano</Username> </AutoLogon> <UserAccounts> <LocalAccounts> <LocalAccount wcm:action="add"> <Password> <Value>qwertzuiop</Value> <PlainText>true</PlainText> </Password> <DisplayName>Modano</DisplayName> <Name>Modano</Name> <Group>Administrators</Group> </LocalAccount> </LocalAccounts> </UserAccounts> </component> <component name="Microsoft-Windows-Shell-Setup" 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"> <TimeZone>E. South America Standard Time</TimeZone> <RegisteredOwner>Modano</RegisteredOwner> <Display> <ColorDepth>32</ColorDepth> <HorizontalResolution>1280</HorizontalResolution> <VerticalResolution>1024</VerticalResolution> <RefreshRate>60</RefreshRate> </Display> <OOBE> <HideEULAPage>true</HideEULAPage> <HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE> <NetworkLocation>Work</NetworkLocation> <ProtectYourPC>3</ProtectYourPC> </OOBE> <AutoLogon> <Password> <Value>qwertzuiop</Value> <PlainText>true</PlainText> </Password> <Enabled>true</Enabled> <LogonCount>9999999</LogonCount> <Username>Modano</Username> </AutoLogon> <UserAccounts> <LocalAccounts> <LocalAccount wcm:action="add"> <Password> <Value>qwertzuiop</Value> <PlainText>true</PlainText> </Password> <DisplayName>Modano</DisplayName> <Name>Modano</Name> <Group>Administrators</Group> </LocalAccount> </LocalAccounts> </UserAccounts> </component> </settings> </unattend> <!--Customized by myselfidem. Only for One OS Windows 7 Ultimate AIO (x86 and amd64). Adapt the values to your needs.--> Cheers
  13. File SetProductKey.rar updated. Few Autounattend.xml files given as example. http://www.mediafire.com/?uss84mzbqo91q
  14. I found some answers with Google: http://www.sevenforums.com/system-security/17528-command-line-argument-admin-rights.html http://social.technet.microsoft.com/Forums/en-US/ITCG/thread/310e57f9-2367-4293-9f97-53d0e077aacc/ Tested with "no success": always asking for a password!
  15. I don't understand why when I create my Autounattend.xml file with 7Customizer, even if I choose my custom local settings fr-FR , I have: <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>en-us</SystemLocale> <UserLocale>en-us</UserLocale> <UILanguage>fr-FR</UILanguage> <UILanguageFallback>en-us</UILanguageFallback> <InputLocale>0409:00000409</InputLocale> </component> Regards
  16. Useful informations about NET Framework 4.0 silent installation: NET Framework Deployment Guide http://msdn.microsoft.com/en-us/library/ee942965(v=VS.100).aspx
  17. You can try to add a user account inside your Autounattend.xml <UserAccounts> <LocalAccounts> <LocalAccount wcm:action="add"> <Password> <PlainText>false</PlainText> <Value>xxxxxxxxxx</Value> </Password> <Group>Administrators</Group> <DisplayName>myselfidem</DisplayName> <Name>myselfidem</Name> </LocalAccount> </LocalAccounts> </UserAccounts> More help: http://technet.micro...etupKnownIssues
  18. I don't really understand how you have customized your Windows 7: using vLite and RT Se7en Lite and Sysprep? Could you be more clearer?
  19. Thanks! Maybe that can help. With an successfull mounted and unmounted image I see inside the BuCleanLog.txt: -- >Selected Image Edition Name:premium --- 12/11/2011 17:19:30 ??? I have selected Windows 7 Ultimate. And even if I haven't selected to create an Autounattend.xml file, this one is created! Regards
  20. Change to: @echo off cmd /c TAKEOWN /F "%systemdrive%\Windows\Help\Help\en-US" /R /D Y && ICACLS "%systemdrive%\Windows\Help\Help\en-US" /grant:r Brian:F /T rmdir /s /q "%systemdrive%\Windows\Help\Help\en-US" pause my output command:
  21. You can try like this: @echo off cmd /c TAKEOWN /F "%systemdrive%\Windows\Help\Help\fr-FR" /R /D O && ICACLS "%systemdrive%\Windows\Help\Help\fr-FR" /grant:r *S-1-5-32-544:F /T rmdir /s /q "%systemdrive%\Windows\Help\Help\fr-FR" exit For english version: @echo off cmd /c TAKEOWN /F "%systemdrive%\Windows\Help\Help\en-US" /R /D Y && ICACLS "%systemdrive%\Windows\Help\Help\en-US" /grant:r *S-1-5-32-544:F /T rmdir /s /q "%systemdrive%\Windows\Help\Help\en-US" exit Works fine for me!
  22. Unfortunately, if I may say so, it is not valid for Windows 7 localized versions. Some software is promising, as W7T( Windows 7 Toolkit from Legolash2o) , but only valid for English versions. However, recover a missing component is apparently a problem. It will start again to create a new Windows 7 customized and keep the useful component. It is your responsibility to remove components ... And thanks to share your result to improve this process!! But if your version of Windows 7 is working properly, why not? http://www.wincert.net/forum/index.php?/topic/9056-windows-7-toolkit-v130-beta/
  23. New test made with ONE IMAGE Windows 7 Ultimate SP0. Result: works fine! Maybe the first time the Image install.wim SP1 was corrupted! I will make a new test with ONE IMAGE Windows 7 Ultimate SP1. Regards Windows 7 Ultimate x86 SP0 success *Edit: If Windows have already SP1 integrated (one image install.wim 1 Ultimate) the software doesn't work as mentionned above!
  24. Thanks! But, no success with the new version for my Windows 7 Ultimate x86 French version IF THERE IS ONLY ONE IMAGE! Image BuClean 2.7 Error BUT works if there is 5 Images: Success BuClean Servies Image I will make a new test with ONLY ONE IMAGE! Regards
×
×
  • Create New...