Jump to content

ruudboek

Member
  • Posts

    113
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Netherlands

About ruudboek

ruudboek's Achievements

0

Reputation

  1. I think starting windows PE before you get to the OS selection dialog takes too long. CDshell on the other hand, can display an OS selection menu in seconds. How do you create a Multi DVD for the windows 7 editions using CDshell?
  2. @MrJinje, thx so much for your reply, i really appreciate it. I don't think i need to be able to "DISM /ADD-PACKAGE". However, i thought about this, maybe it would be better to simply change almost all the User Shell Folders in the registry to point D:\users\%username%. So that will mean that ntuser.dat will remain in C:\users\%username% and My Documents, My pictures, etc. will point to D:\Users\%username%\My Documents, etc. I would like that those registry entries will be set for every newly created user in windows 7. Can you provide me with a working autounattend.xml that will add Current User registry settings to the default user, so that those registry will be valid for every newly created user?
  3. I already have a working autounattend.xml available for Vista, which changes the profilesdirectory from C:\users to D:\users . It does this by setting <ProfilesDirectory>D:\Users</ProfilesDirectory> during the oobeSystem pass. I'm having a hard time to get this to work in windows 7. Apparently the command "sysprep.exe /quiet /audit" to get into audit mode no longer works in windows 7. I've found out that you now have to change the mode from OOBE to Audit in Microsoft-Windows-Deployment\Reseal, but i just don't know where to then put that Windows-Deployment\Reseal. Should it be in audit System or in audit User? Basically what i want is this: 1. Change the profiles directory to D:\users. 2. Add a few registry settings to the default user, so that those registry will be valid for every newly created user. If anyone has a working autounattend.xml that can do that, i would really appreciate it if they would be so kind to post it here.
  4. @maxXPsoft I think he wants to create an unattend.xml without the product key and he does not want to be prompted for the product key. That's what i want aswell. I tried to leave the product key out of the Windows PE pass, but then the installation will simply stop with an error saying that the product key is invalid. Does anyone know how to create an unattended without the product key, that will simply continue without prompting for the product key during the installation? Or are there any generic or universal product keys for vista that one can legally use to startup the unattended installation?
  5. As with a lot of people, the Network location dialog pops up when my unattended installation finishes too. I also tried adding this RunSynchronousCommand to the specialize pass: cmd /c reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows NT\CurrentVersion\NetworkList\Signatures\FirstNetwork" /v Category /t REG_DWORD /d 00000000 /f Regrettaby, as with a lot people, that workaround didn't work for me either. I therefore decided to use the wininstall tool to take some snapshots of the registry and found out that the following reg command will prevent the Network location dialog from popping up: Code cmd /c reg add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\NetworkList\NewNetworks" /v NetworkList /t REG_MULTI_SZ /d "" /f You can add this as a SynchronousCommand to the oobeSystem pass. I tested this myself and i can confirm that it works. This workaround does have a downside: the Network location type will be set to "Public". I have not found a way to automate changing it to "Home". I would prefer that because the option "Network discovery" would be enabled then. Does anyone know of a command line tool, group policy or registry setting that will enable one to change the Network location?
  6. @Firegeier, your autounattend.xml and the unattend.xml worked like a charm. The only mistake i made was placing my modified unattend.xml in a folder called panther\unattend during the Window PE phase. The advantage of that is that it takes precedence over the autounattend.xml on the dvd. The disadvantage of that was that it also took precedence over the sysprep unattend.xml, making it get into kind of a loop. Adding a runsynchronous command to the audituser phase that deletes the unattend.xml from the panther\unattend folder fixed the problem. Thx firegeier, appreciate the help. Ruud
  7. Martin, i followed your advise and changed the FOR %IN line. Regrettably it gave me the same result. Also i have to say that i was expecting your suggestion not to make any difference, because of the simple fact that i can see that the regimport was succesfull because it was showing a green checkmark at the registry import screen during the installation. Ruud
  8. Hello Martin, i am using Windows Vista Ultimate, not OEM. This 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"> <SetupUILanguage> <UILanguage>NL-NL</UILanguage> </SetupUILanguage> <InputLocale>en-US</InputLocale> <SystemLocale>NL-NL</SystemLocale> <UILanguage>NL-NL</UILanguage> <UserLocale>NL-NL</UserLocale> <UILanguageFallback>en-US</UILanguageFallback> </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> <WillShowUI>OnError</WillShowUI> <Key>XXXXX-XXXXX-XXXXX-XXXXX-XXXXX</Key> </ProductKey> <AcceptEula>true</AcceptEula> <FullName>name</FullName> <Organization>none</Organization> </UserData> <Display> <ColorDepth>32</ColorDepth> <HorizontalResolution>1024</HorizontalResolution> <RefreshRate>60</RefreshRate> <VerticalResolution>768</VerticalResolution> </Display> <ImageInstall> <OSImage> <InstallFrom> <MetaData wcm:action="add"> <Key>/IMAGE/Index</Key> <Value>1</Value> </MetaData> </InstallFrom> <WillShowUI>OnError</WillShowUI> <InstallToAvailablePartition>false</InstallToAvailablePartition> <InstallTo> <DiskID>0</DiskID> <PartitionID>1</PartitionID> </InstallTo> </OSImage> </ImageInstall> <EnableNetwork>true</EnableNetwork> <EnableFirewall>true</EnableFirewall> <LogPath>%SystemRoot%\temp</LogPath> <DiskConfiguration> <WillShowUI>OnError</WillShowUI> </DiskConfiguration> <RunAsynchronous> <RunAsynchronousCommand wcm:action="add"> <Path>cmd /c md "%windir%\panther\unattend"</Path> <Order>1</Order> </RunAsynchronousCommand> <RunAsynchronousCommand wcm:action="add"> <Path>cmd /c copy "c:\install\unattend.xml" "%windir%\panther\unattend" /y</Path> <Order>2</Order> </RunAsynchronousCommand> <RunAsynchronousCommand wcm:action="add"> <Path>cmd /c format c: /fs:ntfs /q /x /y</Path> <Order>3</Order> </RunAsynchronousCommand> <RunAsynchronousCommand wcm:action="add"> <Path>cmd /c format d: /fs:ntfs /q /x /y</Path> <Order>4</Order> </RunAsynchronousCommand> </RunAsynchronous> </component> </settings> <settings pass="specialize"> <component name="Microsoft-Windows-Security-Licensing-SLC-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-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"> <Path>cmd /c "FOR %i IN (C D E F G H I J K L N M O P Q R S T U V W X Y Z) DO IF EXIST %i:\AppsRoot.txt SETX AppsRoot %i:\ -m"</Path> <Order>1</Order> </RunSynchronousCommand> <RunSynchronousCommand wcm:action="add"> <Order>2</Order> <Path>%WINDIR%\system32\sysprep\sysprep.exe /quiet /audit</Path> </RunSynchronousCommand> </RunSynchronous> </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"> <BlockPopups>yes</BlockPopups> <Help_Page>http://www.google.com</Help_Page> <Home_Page>http://www.google.com</Home_Page> <IEWelcomeMsg>false</IEWelcomeMsg> <PlaySound>true</PlaySound> <ShowInformationBar>true</ShowInformationBar> </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> <Password> <Value>password</Value> <PlainText>true</PlainText> </Password> <Enabled>true</Enabled> <LogonCount>2</LogonCount> <Username>johndoe</Username> </AutoLogon> <Display> <ColorDepth>32</ColorDepth> <DPI>96</DPI> <HorizontalResolution>1024</HorizontalResolution> <RefreshRate>60</RefreshRate> <VerticalResolution>768</VerticalResolution> </Display> <Themes> <DefaultThemesOff>false</DefaultThemesOff> </Themes> <WindowsFeatures> <ShowInternetExplorer>true</ShowInternetExplorer> <ShowMediaCenter>true</ShowMediaCenter> <ShowWindowsMail>true</ShowWindowsMail> <ShowWindowsMediaPlayer>true</ShowWindowsMediaPlayer> </WindowsFeatures> <BluetoothTaskbarIconEnabled>false</BluetoothTaskbarIconEnabled> <ComputerName>comp01</ComputerName> <CopyProfile>true</CopyProfile> <DisableAutoDaylightTimeSet>false</DisableAutoDaylightTimeSet> <DoNotCleanTaskBar>false</DoNotCleanTaskBar> <ProductKey>productkey</ProductKey> <RegisteredOrganization>organization</RegisteredOrganization> <RegisteredOwner>owner</RegisteredOwner> <ShowWindowsLive>false</ShowWindowsLive> <StartPanelOff>false</StartPanelOff> <TimeZone>W. Europe Standard Time</TimeZone> </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>1</Order> <Path>cmd /c regedit /s %appsroot%\install\default.reg</Path> </RunSynchronousCommand> <RunSynchronousCommand wcm:action="add"> <Order>2</Order> <Path>%WINDIR%\system32\sysprep\sysprep.exe /quiet /oobe /reboot</Path> <WillReboot>Never</WillReboot> </RunSynchronousCommand> </RunSynchronous> </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"> <AutoLogon> <Enabled>true</Enabled> <LogonCount>5</LogonCount> <Username>Administrator</Username> </AutoLogon> <Display> <ColorDepth>32</ColorDepth> <DPI>96</DPI> <HorizontalResolution>1024</HorizontalResolution> <RefreshRate>60</RefreshRate> <VerticalResolution>768</VerticalResolution> </Display> <OOBE> <HideEULAPage>true</HideEULAPage> <NetworkLocation>Home</NetworkLocation> <ProtectYourPC>1</ProtectYourPC> <SkipMachineOOBE>true</SkipMachineOOBE> <SkipUserOOBE>true</SkipUserOOBE> </OOBE> <TimeZone>W. Europe Standard Time</TimeZone> <RegisteredOwner>ownerdoe</RegisteredOwner> <ShowWindowsLive>false</ShowWindowsLive> <DisableAutoDaylightTimeSet>false</DisableAutoDaylightTimeSet> <DoNotCleanTaskBar>false</DoNotCleanTaskBar> <RegisteredOrganization>none</RegisteredOrganization> <UserAccounts> <LocalAccounts> <LocalAccount wcm:action="add"> <Password> <Value>password</Value> <PlainText>true</PlainText> </Password> <DisplayName>johndoe</DisplayName> <Group>Administrators</Group> <Name>johndoe</Name> <Description>Computerbeheerder</Description> </LocalAccount> </LocalAccounts> </UserAccounts> <WindowsFeatures> <ShowInternetExplorer>true</ShowInternetExplorer> <ShowMediaCenter>true</ShowMediaCenter> <ShowWindowsMail>true</ShowWindowsMail> <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"> <SidebarOnByDefault>false</SidebarOnByDefault> <SidebarVisible>false</SidebarVisible> </component> </settings> <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> <LogonCount>1</LogonCount> <Username>Administrator</Username> <Enabled>true</Enabled> </AutoLogon> </component> </settings> </unattend>
  9. I followed the "Copying the actual user profile over to the profile of default user" guide from Firegeier, but for some unknown reason my current_user regtweaks still do not seem to be applied to the default user profile. Could someone please post a working unattend.xml so i can compare it with my unattend.xml? Ruud
  10. Hello all, does presetup.cmd also exist in vista? Or is there an alternative for presetup.cmd present in Vista? Ruud
  11. Ok, please forget this post, i was under the impression that no drivers where installed for this device, yet there was syntaxerror in the presetup.cmd in the latest RC7 beta-testing-version of the driverpack Base causing no driverpacks to be installed at all. The driver was installed just fine after correcting the error. Ruud
  12. Ok, please forget this post, i was under the impression that no drivers where installed for this device, yet there was syntaxerror in the presetup.cmd in the latest RC7 beta-testing-version of the driverpack Base causing no driverpacks to be installed at all. The driver was installed just fine after correcting the error. Ruud
  13. Ok, please forget this post, i was under the impression that no drivers where installed for this device, yet there was syntaxerror in the presetup.cmd in the latest RC7 beta-testing-version of the driverpack Base causing no driverpacks to be installed at all. The driver was installed just fine after correcting the error. Ruud
  14. Apparently no driver was available for my Ralink RT2500 Wireless LAN PCCard. I used the latest driverpack wlan v603. The strange thing is that this wlan card does install properly with the older driverpack wlan v507. Please find attached my hardwareid's. Ruud hwids.txt
  15. No driver was available for my HSP56 MR modem in my gericom 2440xl laptop. They are not present in the latest driverpack modem. I would really appreciate if someone could add them. I found the proper OEM drivers for them from Connexant. These drivers support a lot of laptop modems from other manufacturers aswell. You can download them here : http://conexant.com/support/hsp_driverdownload.jsp Directdownload for WinXP : http://conexant.com/support/files/HSP_UniD...are_Win2kXP.zip Please find attached my hardwareid's. Ruud Ok, please forget this post, i was under the impression that no drivers where installed for this device, yet there was syntaxerror in the presetup.cmd in the latest RC7 beta-testing-version of the driverpack Base causing no driverpacks to be installed at all. The driver was installed just fine after correcting the error. Ruud hwids.txt
×
×
  • Create New...