Jump to content

MrEs

Member
  • Posts

    15
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Australia

Everything posted by MrEs

  1. Hey all, I've got a small, niggling issue... What happens is when my installation gets up to the FirstLogonCommands they run, however the systems has a blank 'command line' screen, and the installation stops until the user manually CLOSES this window. See the attached pic... What am i doing wrong? My first logon commands in my autounattended.xml look like this: <FirstLogonCommands> <SynchronousCommand wcm:action="add"> <Order>1</Order> <CommandLine>cmd %systemdrive%\Install\firstlogon.cmd</CommandLine> <RequiresUserInput>true</RequiresUserInput> <Description>SetupUser</Description> </SynchronousCommand> </FirstLogonCommands> My firstlogon.cmd looks like this: @echo off start /wait REGEDIT /S %systemdrive%\Install\UserRegTweaks1.Reg start /wait "%PROGRAMFILES%\Internet Explorer\iexplore.exe" %systemdrive%\Install\IESetup.html start /wait REGEDIT /S %systemdrive%\Install\UserRegTweaks2.Reg cmd copy %systemdrive%\Install\Configure_IE.lnk %userprofile%\Desktop\ start /sleep 60 REGEDIT /S %systemdrive%\Install\Install\UserRegTweaks2.Reg exit
  2. Well in the end I had this working: <settings pass="windowsPE"> <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>en-US</UILanguage> </SetupUILanguage> <InputLocale>en-US</InputLocale> <UILanguageFallback></UILanguageFallback> <UserLocale>en-AU</UserLocale> <SystemLocale>en-AU</SystemLocale> <UILanguage>en-US</UILanguage> </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"> <DiskConfiguration> <WillShowUI>OnError</WillShowUI> <Disk wcm:action="add"> <CreatePartitions> <CreatePartition wcm:action="add"> <Order>2</Order> <Type>Primary</Type> <Extend>true</Extend> </CreatePartition> <CreatePartition wcm:action="add"> <Order>1</Order> <Size>300</Size> <Type>Primary</Type> </CreatePartition> </CreatePartitions> <ModifyPartitions> <ModifyPartition wcm:action="add"> <Active>true</Active> <Format>NTFS</Format> <Label>Windows7</Label> <Order>2</Order> <PartitionID>2</PartitionID> <Extend>false</Extend> <Letter>C</Letter> </ModifyPartition> <ModifyPartition wcm:action="add"> <Order>1</Order> <PartitionID>1</PartitionID> <Active>false</Active> <Extend>false</Extend> <Format>NTFS</Format> <Label>System Reserved</Label> <TypeID>0x27</TypeID> </ModifyPartition> </ModifyPartitions> <WillWipeDisk>true</WillWipeDisk> <DiskID>0</DiskID> </Disk> </DiskConfiguration> <ImageInstall> <OSImage> <InstallToAvailablePartition>false</InstallToAvailablePartition> <WillShowUI>OnError</WillShowUI> <InstallFrom> <MetaData wcm:action="add"> <Key>/IMAGE/INDEX</Key> <Value>1</Value> </MetaData> </InstallFrom> <InstallTo> <DiskID>0</DiskID> <PartitionID>2</PartitionID> </InstallTo> </OSImage> </ImageInstall> <UserData> <AcceptEula>true</AcceptEula> <FullName>Fred</FullName> <Organization>Fred Health Pty Ltd</Organization> </UserData> <Diagnostics> <OptIn>true</OptIn> </Diagnostics> <UseConfigurationSet>true</UseConfigurationSet> <EnableNetwork>true</EnableNetwork> <LogPath>C:\Log</LogPath> </component> </settings> It seems my pain stemmed from NOT Having: <Extend>true</Extend> On my 'Windows' partition in CreatePartition Also it worked better having: <InstallToAvailablePartition>false</InstallToAvailablePartition> In the ImageInstall -> OSImage section (Since I was being specific with the installation partition) Hopefully that helps somebody one day
  3. Mmm I'm not so convinced... I've got a firstruncommand: cmd copy %systemdrive%\Install\Configure_IE.lnk %userprofile%\Desktop\ And it does that the FIRST TIME the FIRST USER logs on... but when different user logs on for the FIRST TIME, that command doesn't seem to get run.. ?
  4. Hey guys, I'm not sure if FirstLogonCommands already works like this or not? It doesn't seem to... ? I was wondering if it was possible to set it up so that the something gets run when any new user logs in for the first time? Like, every time somebody logs in FOR THE FIRST time.... Much appreciated Thanks!
  5. OK I started again... I built an image with no unattended.xml and it worked as expected. I build an image with only the language selection in WindowsPE and that worked as expected Next I added the partitioning back in and that failed as before... This was the configuration... <?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="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>en-US</UILanguage> </SetupUILanguage> <InputLocale>en-US</InputLocale> <UILanguageFallback></UILanguageFallback> <UserLocale>en-AU</UserLocale> <SystemLocale>en-AU</SystemLocale> <UILanguage>en-US</UILanguage> </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>true</OptIn> </Diagnostics> DiskConfiguration> <Disk wcm:action="add"> <CreatePartitions> <CreatePartition wcm:action="add"> <Order>2</Order> <Type>Primary</Type> </CreatePartition> <CreatePartition wcm:action="add"> <Order>1</Order> <Size>300</Size> <Type>Primary</Type> </CreatePartition> </CreatePartitions> <ModifyPartitions> <ModifyPartition wcm:action="add"> <Format>NTFS</Format> <Label>Windows</Label> <Order>2</Order> <PartitionID>2</PartitionID> <Active>true</Active> </ModifyPartition> <ModifyPartition wcm:action="add"> <Active>false</Active> <Format>NTFS</Format> <Label>System Reserved</Label> <Order>1</Order> <PartitionID>1</PartitionID> <TypeID>0x27</TypeID> </ModifyPartition> </ModifyPartitions> <DiskID>0</DiskID> <WillWipeDisk>true</WillWipeDisk> </Disk> <WillShowUI>OnError</WillShowUI> </DiskConfiguration> </component> </settings> <cpi:offlineImage cpi:source="wim:d:/aik/windows_7_enterprise_x64_2/dvd/sources/install.wim#Windows 7 ENTERPRISE" xmlns:cpi="urn:schemas-microsoft-com:cpi" /> </unattend> Next I tried WITHOUT the 'System Reserved' partition... and that ALSO FAILED! <?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="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>en-US</UILanguage> </SetupUILanguage> <InputLocale>en-US</InputLocale> <UILanguageFallback></UILanguageFallback> <UserLocale>en-AU</UserLocale> <SystemLocale>en-AU</SystemLocale> <UILanguage>en-US</UILanguage> </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>true</OptIn> </Diagnostics> <DiskConfiguration> <WillShowUI>OnError</WillShowUI> <Disk wcm:action="add"> <CreatePartitions> <CreatePartition wcm:action="add"> <Order>1</Order> <Type>Primary</Type> </CreatePartition> </CreatePartitions> <ModifyPartitions> <ModifyPartition wcm:action="add"> <Active>true</Active> <Format>NTFS</Format> <Label>Windows</Label> <Order>1</Order> <PartitionID>1</PartitionID> <Letter>C</Letter> </ModifyPartition> </ModifyPartitions> <WillWipeDisk>true</WillWipeDisk> <DiskID>0</DiskID> </Disk> </DiskConfiguration> <ImageInstall> <OSImage> <InstallFrom> <MetaData wcm:action="add"> <Key>/IMAGE/NAME</Key> <Value>Windows 7 ENTERPRISE</Value> </MetaData> </InstallFrom> <InstallToAvailablePartition>true</InstallToAvailablePartition> <WillShowUI>OnError</WillShowUI> </OSImage> </ImageInstall> </component> </settings> <cpi:offlineImage cpi:source="wim:d:/aik/windows_7_enterprise_x64_2/dvd/sources/install.wim#Windows 7 ENTERPRISE" xmlns:cpi="urn:schemas-microsoft-com:cpi" /> </unattend> Any chance anybody has any ideas?
  6. With the WAIK you get a few help files, the only two I've found useful so far are: * Windows Automated Installation Kit (Windows AIK) User's Guide (waik.chm) * Unattended Windows Setup Reference (Unattend.chm) The other thing that's been really useful is FireGeier Unattended Vista Guide_2 http://www.scribd.com/doc/17471845/FireGei...ed-Vista-Guide2 However there are some things it's a little outdated with since Vista SP1.
  7. Hey all, I'm using the WAIk to make an automated install, I started with x86 and after a few hiccups regarding application installations it'll all now going great! However I've tried to make an x64 version using the AIK again and obviously an x64 version of Windows 7 Enterprise with little success. It first falls over because it brings up the partition screen, this should be automated (and it is in my x86 disk), then even if i do select a partition to install it comes up with an error: I've attached a screenshot of the error <?xml version="1.0" encoding="utf-8"?> <unattend xmlns="urn:schemas-microsoft-com:unattend"> <servicing> <package action="configure" permanence="permanent"> <assemblyIdentity name="Microsoft-Windows-LocalPack-AU-Package" version="6.1.7600.16385" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="" /> <selection name="LocalPack-AU" state="true" /> </package> </servicing> <settings pass="oobeSystem"> <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"> <OOBE> <HideEULAPage>true</HideEULAPage> <NetworkLocation>Work</NetworkLocation> <ProtectYourPC>1</ProtectYourPC> </OOBE> <UserAccounts> <AdministratorPassword> <Value>QgB1AGQAdwBpAHMAZQByAGkAcwByAHUAYgBiAGkAJQBoAEEAZABtAGkAbgBpAHMAdAByAGEAdABvAHIAUABhAHMAcwB3AG8A cgBkAA==</Value> <PlainText>false</PlainText> </AdministratorPassword> </UserAccounts> <TimeZone>AUS Eastern Standard Time</TimeZone> <RegisteredOrganization>Fred</RegisteredOrganization> <RegisteredOwner>Fred</RegisteredOwner> <ShowWindowsLive>false</ShowWindowsLive> <FirstLogonCommands> <SynchronousCommand wcm:action="add"> <CommandLine>cmd /c REGEDIT /S %systemdrive%\Install\UserRegTweaks1.Reg</CommandLine> <Description>SetupUser</Description> <Order>1</Order> <RequiresUserInput>false</RequiresUserInput> </SynchronousCommand> <SynchronousCommand wcm:action="add"> <Order>2</Order> <RequiresUserInput>false</RequiresUserInput> <Description>Welcome</Description> <CommandLine>"%PROGRAMFILES%\Internet Explorer\iexplore.exe" %systemdrive%\Install\IESetup.html</CommandLine> </SynchronousCommand> </FirstLogonCommands> <VisualEffects> <FontSmoothing>ClearType</FontSmoothing> </VisualEffects> <WindowsFeatures> <ShowInternetExplorer>true</ShowInternetExplorer> <ShowMediaCenter>true</ShowMediaCenter> <ShowWindowsMediaPlayer>true</ShowWindowsMediaPlayer> </WindowsFeatures> <TaskbarLinks> <Link1></Link1> <Link2></Link2> <Link0>%windir%\system32\msra.exe</Link0> </TaskbarLinks> <DoNotCleanTaskBar>true</DoNotCleanTaskBar> </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>0c09:00000409</InputLocale> <SystemLocale>en-AU</SystemLocale> <UILanguage>en-AU</UILanguage> <UserLocale>en-AU</UserLocale> <UILanguageFallback>en-US</UILanguageFallback> </component> <component name="Microsoft-Windows-Deployment" 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"> <Reseal> <ForceShutdownNow>false</ForceShutdownNow> <Mode>OOBE</Mode> </Reseal> </component> </settings> <settings pass="windowsPE"> <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>en-US</UILanguage> </SetupUILanguage> <InputLocale>en-US</InputLocale> <SystemLocale>en-AU</SystemLocale> <UILanguage>en-US</UILanguage> <UserLocale>en-AU</UserLocale> </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"> <DiskConfiguration> <Disk wcm:action="add"> <CreatePartitions> <CreatePartition wcm:action="add"> <Order>2</Order> <Type>Primary</Type> </CreatePartition> <CreatePartition wcm:action="add"> <Order>1</Order> <Size>300</Size> <Type>Primary</Type> </CreatePartition> </CreatePartitions> <ModifyPartitions> <ModifyPartition wcm:action="add"> <Format>NTFS</Format> <Label>Windows</Label> <Order>2</Order> <PartitionID>2</PartitionID> <Active>true</Active> </ModifyPartition> <ModifyPartition wcm:action="add"> <Active>false</Active> <Format>NTFS</Format> <Label>System Reserved</Label> <Order>1</Order> <PartitionID>1</PartitionID> <TypeID>0x27</TypeID> </ModifyPartition> </ModifyPartitions> <DiskID>0</DiskID> <WillWipeDisk>true</WillWipeDisk> </Disk> <WillShowUI>OnError</WillShowUI> </DiskConfiguration> <ImageInstall> <OSImage> <InstallTo> <DiskID>0</DiskID> <PartitionID>2</PartitionID> </InstallTo> <InstallToAvailablePartition>false</InstallToAvailablePartition> <WillShowUI>OnError</WillShowUI> <InstallFrom> <MetaData wcm:action="add"> <Key>/IMAGE/NAME</Key> <Value>Windows 7 ENTERPRISE</Value> </MetaData> </InstallFrom> </OSImage> </ImageInstall> <UserData> <AcceptEula>true</AcceptEula> <Organization>Fred</Organization> <FullName>Fred</FullName> </UserData> <EnableNetwork>true</EnableNetwork> <Diagnostics> <OptIn>true</OptIn> </Diagnostics> <LogPath>C:\Log</LogPath> <UseConfigurationSet>true</UseConfigurationSet> </component> </settings> <settings pass="specialize"> <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"> <CompanyName>Fred</CompanyName> <DisableFirstRunWizard>true</DisableFirstRunWizard> <BlockPopups>yes</BlockPopups> <DisableOOBAccelerators>true</DisableOOBAccelerators> <DisableWelcomePage>true</DisableWelcomePage> <FavoritesDelete>true</FavoritesDelete> <SuggestedSitesEnabled>false</SuggestedSitesEnabled> </component> <component name="Microsoft-Windows-TerminalServices-LocalSessionManager" 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"> <fDenyTSConnections>false</fDenyTSConnections> </component> <component name="Networking-MPSSVC-Svc" 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"> <FirewallGroups> <FirewallGroup wcm:action="add" wcm:keyValue="Remote Desktop"> <Active>true</Active> <Group>Remote Desktop</Group> </FirewallGroup> <FirewallGroup wcm:action="add" wcm:keyValue="Remote Assistance"> <Active>true</Active> <Group>Remote Assistance</Group> </FirewallGroup> </FirewallGroups> </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"> <UserLocale>en-AU</UserLocale> <UILanguage>en-AU</UILanguage> <SystemLocale>en-AU</SystemLocale> <InputLocale>0c09:00000409</InputLocale> <UILanguageFallback>en-US</UILanguageFallback> </component> <component name="Microsoft-Windows-RemoteAssistance-Exe" 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"> <fAllowFullControl>true</fAllowFullControl> <CreateEncryptedOnlyTickets>false</CreateEncryptedOnlyTickets> <fAllowToGetHelp>true</fAllowToGetHelp> <MaxTicketExpiry>3</MaxTicketExpiry> </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"> <CopyProfile>true</CopyProfile> <ProductKey>zzzzzzzzzzzzzzzzzzzz</ProductKey> <RegisteredOrganization>Fred</RegisteredOrganization> <RegisteredOwner>Fred</RegisteredOwner> <ShowWindowsLive>false</ShowWindowsLive> <TimeZone>AUS Eastern Standard Time</TimeZone> </component> </settings> <settings pass="generalize"> <component name="Microsoft-Windows-PnpSysprep" 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"> <DoNotCleanUpNonPresentDevices>true</DoNotCleanUpNonPresentDevices> <PersistAllDeviceInstalls>true</PersistAllDeviceInstalls> </component> </settings> <cpi:offlineImage cpi:source="wim:d:/aik/windows_7_enterprise_x64/install.wim#Windows 7 ENTERPRISE" xmlns:cpi="urn:schemas-microsoft-com:cpi" /> </unattend> Any ideas.... ? Thanks!
  8. Ok I found this post by outkast134 last night: http://www.msfn.org/board/vista-unattended...p;view=findpost And after having chased my own tail around for nearly a week his solution is VERY simple and works SO EASILY! My setup now is so easy and my autounattended so small, simple and works well! Thanks for listening *crickets and tumble weeds*
  9. Any chance that you could post the rest of you vistade.xml file? (and maybe the Autounattend.xml as well, it will probably help too) Of course having removed any domain/key details.
  10. Ok I feel like I'm talking to myself here Anways I've got it working, with a few issues... When I boot INTO audit mode, I get: * A message about sysprep is already running. * Select your network location screen Thankfully if I leave it, the installation continues correctly and then reboots correctly... When we reboot AFTER audit mode, I get: * Select your location, currency, etc. * Set your computer name and create an admin (This is GOOD I want this screen) * Accept the ULA screen * Protection Level screen * Timezone screen * Computer location screen After the computer boots up: * The 'RunOnFirstLogin' commands don't work * The 'Adminstrator' account seems to be disabled Autounattended: <?xml version="1.0" encoding="utf-8"?> <unattend xmlns="urn:schemas-microsoft-com:unattend"> <servicing> <package action="configure" permanence="permanent"> <assemblyIdentity name="Microsoft-Windows-LocalPack-AU-Package" version="6.1.7600.16385" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="" /> <selection name="LocalPack-AU" state="true" /> </package> </servicing> <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> <ProtectYourPC>1</ProtectYourPC> <NetworkLocation>Work</NetworkLocation> <SkipMachineOOBE>true</SkipMachineOOBE> <SkipUserOOBE>true</SkipUserOOBE> </OOBE> <ShowWindowsLive>false</ShowWindowsLive> <RegisteredOrganization>Fred Health Pty. Ltd.</RegisteredOrganization> <RegisteredOwner>Fred Health Pty. Ltd.</RegisteredOwner> <TimeZone>AUS Eastern Standard Time</TimeZone> <VisualEffects> <FontSmoothing>ClearType</FontSmoothing> </VisualEffects> <WindowsFeatures> <ShowWindowsMediaPlayer>true</ShowWindowsMediaPlayer> <ShowMediaCenter>true</ShowMediaCenter> <ShowInternetExplorer>true</ShowInternetExplorer> </WindowsFeatures> <FirstLogonCommands> <SynchronousCommand wcm:action="add"> <CommandLine>"%PROGRAMFILES%\Internet Explorer\iexplore.exe" http://share.pcanu.com.au/Getting%20Started/Getting%20started%20with%20Windows%207.aspx</CommandLine> <Order>3</Order> <RequiresUserInput>true</RequiresUserInput> <Description>Welcome</Description> </SynchronousCommand> <SynchronousCommand wcm:action="add"> <Order>2</Order> <RequiresUserInput>true</RequiresUserInput> <CommandLine>cmd /c REGEDIT /S %AppsRoot%\Install\Regtweaks.Reg</CommandLine> </SynchronousCommand> </FirstLogonCommands> <TaskbarLinks> <Link2>http://share.pcanu.com.au/Getting%20Started/Getting%20started%20with%20Windows%207.aspx</Link2> <Link1>%PROGRAMFILES%\Internet Explorer\iexplore.exe http://share.pcanu.com.au/Getting%20Started/Getting%20started%20with%20Windows%207.aspx</Link1> <Link0>%windir%\system32\msra.exe</Link0> </TaskbarLinks> <DoNotCleanTaskBar>true</DoNotCleanTaskBar> <UserAccounts> <AdministratorPassword> <Value>QgB1AGQAdwBpAHMAZQByAGkAcwByAHUAYgBiAGkAJABoAEEAZABtAGkAbgBpAHMAdAByAGEAdABvAHIAUABhAHMAcwB3AG8A cgBkAA==</Value> <PlainText>false</PlainText> </AdministratorPassword> </UserAccounts> </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"> <UserLocale>en-AU</UserLocale> <UILanguage>en-AU</UILanguage> <SystemLocale>en-AU</SystemLocale> <InputLocale>en-US</InputLocale> <UILanguageFallback>en-US</UILanguageFallback> </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"> <Reseal> <Mode>Audit</Mode> </Reseal> </component> </settings> <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> <InputLocale>en-US</InputLocale> <SystemLocale>en-AU</SystemLocale> <UILanguage>en-US</UILanguage> <UserLocale>en-AU</UserLocale> <UILanguageFallback></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"> <DiskConfiguration> <Disk wcm:action="add"> <CreatePartitions> <CreatePartition wcm:action="add"> <Order>2</Order> <Type>Primary</Type> <Extend>true</Extend> </CreatePartition> <CreatePartition wcm:action="add"> <Order>1</Order> <Size>300</Size> <Type>Primary</Type> </CreatePartition> </CreatePartitions> <ModifyPartitions> <ModifyPartition wcm:action="add"> <Active>true</Active> <Format>NTFS</Format> <Label>Windows</Label> <Letter>C</Letter> <Order>2</Order> <PartitionID>2</PartitionID> </ModifyPartition> <ModifyPartition wcm:action="add"> <Active>false</Active> <Label>System Reserved</Label> <PartitionID>1</PartitionID> <Order>1</Order> <Format>NTFS</Format> <TypeID>0x27</TypeID> </ModifyPartition> </ModifyPartitions> <DiskID>0</DiskID> <WillWipeDisk>true</WillWipeDisk> </Disk> <WillShowUI>OnError</WillShowUI> </DiskConfiguration> <ImageInstall> <OSImage> <InstallTo> <DiskID>0</DiskID> <PartitionID>2</PartitionID> </InstallTo> <InstallToAvailablePartition>false</InstallToAvailablePartition> <WillShowUI>OnError</WillShowUI> <InstallFrom> <MetaData wcm:action="add"> <Key>/IMAGE/NAME</Key> <Value>Windows 7 ENTERPRISE</Value> </MetaData> </InstallFrom> </OSImage> </ImageInstall> <UserData> <AcceptEula>true</AcceptEula> <Organization>Fred Health Pty. Ltd.</Organization> <FullName>Fred</FullName> </UserData> <Diagnostics> <OptIn>true</OptIn> </Diagnostics> <EnableNetwork>true</EnableNetwork> <UseConfigurationSet>true</UseConfigurationSet> <LogPath>C:\Log</LogPath> </component> </settings> <settings pass="specialize"> <component name="Microsoft-Windows-TerminalServices-LocalSessionManager" 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"> <fDenyTSConnections>false</fDenyTSConnections> </component> <component name="Networking-MPSSVC-Svc" 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"> <FirewallGroups> <FirewallGroup wcm:action="add" wcm:keyValue="Remote Desktop"> <Active>true</Active> <Group>Remote Desktop</Group> </FirewallGroup> <FirewallGroup wcm:action="add" wcm:keyValue="Remote Assistance"> <Group>Remote Assistance</Group> <Active>true</Active> </FirewallGroup> </FirewallGroups> </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"> <FeedList> <FeedItem wcm:action="add"> <FeedURL>http://share.pcanu.com.au/officesystems/_layouts/listfeed.aspx?List={11758C37-467F-463E-8C28-3D2BE9D31B1A}</FeedURL> <FeedTitle>Office Systems</FeedTitle> <FeedKey>1</FeedKey> </FeedItem> </FeedList> <BlockPopups>yes</BlockPopups> <FavoritesDelete>true</FavoritesDelete> <Home_Page>http://share.pcanu.com.au/Getting%20Started/Getting%20started%20with%20Windows%207.aspx</Home_Page> <SuggestedSitesEnabled>false</SuggestedSitesEnabled> <TrustedSites>*.fred.com.au;*.fredhealth.com.au;*.pcanu.com.au;*.nunet.com.au;*.erx.com.au;*.appcat.com.au</TrustedSites> <CompanyName>Fred Health Pty Ltd</CompanyName> <QuickLinkList> <QuickLinkItem wcm:action="add"> <QLID>4</QLID> <QuickLinkName>Support</QuickLinkName> <QuickLinkUrl>http://support.pcanu.com.au/</QuickLinkUrl> </QuickLinkItem> <QuickLinkItem wcm:action="add"> <QLID>1</QLID> <QuickLinkUrl>https://mail.pcanu.com.au/</QuickLinkUrl> <QuickLinkName>Webmail</QuickLinkName> </QuickLinkItem> <QuickLinkItem wcm:action="add"> <QLID>2</QLID> <QuickLinkName>LogMeIn</QuickLinkName> <QuickLinkUrl>https://secure.logmeinrescue.com/HelpDesk/Login.aspx</QuickLinkUrl> </QuickLinkItem> <QuickLinkItem wcm:action="add"> <QLID>3</QLID> <QuickLinkName>SharePoint</QuickLinkName> <QuickLinkUrl>http://share.pcanu.com.au/default.aspx</QuickLinkUrl> </QuickLinkItem> <QuickLinkItem wcm:action="add"> <QLID>5</QLID> <QuickLinkName>Win7 Getting Started</QuickLinkName> <QuickLinkUrl>http://share.pcanu.com.au/Getting%20Started/Getting%20started%20with%20Windows%207.aspx</QuickLinkUrl> </QuickLinkItem> </QuickLinkList> <DisableFirstRunWizard>true</DisableFirstRunWizard> <DisableOOBAccelerators>true</DisableOOBAccelerators> <DisableWelcomePage>true</DisableWelcomePage> </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"> <CopyProfile>true</CopyProfile> <RegisteredOrganization>Fred Health Pty. Ltd.</RegisteredOrganization> <RegisteredOwner>Fred Health Pty. Ltd.</RegisteredOwner> <ShowWindowsLive>false</ShowWindowsLive> <TimeZone>AUS Eastern Standard Time</TimeZone> <ProductKey>zzzzzzzzzzzzzzzzzzz</ProductKey> </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"> <InputLocale>en-US</InputLocale> <SystemLocale>en-AU</SystemLocale> <UILanguage>en-AU</UILanguage> <UserLocale>en-AU</UserLocale> </component> <component name="Microsoft-Windows-RemoteAssistance-Exe" 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"> <MaxTicketExpiry>3</MaxTicketExpiry> <CreateEncryptedOnlyTickets>false</CreateEncryptedOnlyTickets> <fAllowFullControl>true</fAllowFullControl> <fAllowToGetHelp>true</fAllowToGetHelp> </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"> <Order>1</Order> <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> <Description>Set up apppath</Description> </RunSynchronousCommand> </RunSynchronous> </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> <DoNotCleanUpNonPresentDevices>true</DoNotCleanUpNonPresentDevices> </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> <Username>Administrator</Username> <LogonCount>3</LogonCount> <Enabled>true</Enabled> <Password> <Value>QgB1AGQAdwBpAHMAZQByAGkAcwByAHUAYgBiAGkAJABoAFAAYQBzAHMAdwBvAHIAZAA=</Value> <PlainText>false</PlainText> </Password> </AutoLogon> <DoNotCleanTaskBar>true</DoNotCleanTaskBar> <ShowWindowsLive>false</ShowWindowsLive> <TimeZone>AUS Eastern Standard Time</TimeZone> <WindowsFeatures> <ShowInternetExplorer>true</ShowInternetExplorer> <ShowMediaCenter>true</ShowMediaCenter> <ShowWindowsMail>false</ShowWindowsMail> <ShowWindowsMediaPlayer>true</ShowWindowsMediaPlayer> </WindowsFeatures> <UserAccounts> <AdministratorPassword> <Value>QgB1AGQAdwBpAHMAZQByAGkAcwByAHUAYgBiAGkAJABoAEEAZABtAGkAbgBpAHMAdAByAGEAdABvAHIAUABhAHMAcwB3AG8A cgBkAA==</Value> <PlainText>false</PlainText> </AdministratorPassword> </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"> <RunAsynchronous> <RunAsynchronousCommand wcm:action="add"> <Description>Machine RegTweaks</Description> <Path>cmd /c REGEDIT /S %AppsRoot%\Install\MachineRegTweaks.Reg</Path> <Order>1</Order> </RunAsynchronousCommand> <RunAsynchronousCommand wcm:action="add"> <Order>3</Order> <Path>msiexec /i %AppsRoot%\Install\Foxit\FoxitReader234015_enu.msi /qn /l* c:\Foxit23.log ALLUSERS=1 TARGETDIR="c:\Program Files\Foxit Reader"</Path> <Description>Foxit</Description> </RunAsynchronousCommand> <RunAsynchronousCommand wcm:action="add"> <Order>2</Order> <Path>%AppsRoot%\Install\OFFICE12\setup.exe /config %AppsRoot%\Install\OFFICE12\config.xml</Path> <Description>Office</Description> </RunAsynchronousCommand> <RunAsynchronousCommand wcm:action="add"> <Order>100</Order> <Path>%WINDIR%\system32\sysprep\sysprep.exe /quiet /oobe /reboot /unattend:%AppsRoot%\Install\Unattend.xml</Path> <Description>Reboot and continue</Description> </RunAsynchronousCommand> <RunAsynchronousCommand wcm:action="add"> <Order>99</Order> <Description>Enable Admin</Description> <Path>net user administrator /active:yes</Path> </RunAsynchronousCommand> </RunAsynchronous> </component> </settings> <cpi:offlineImage cpi:source="wim:d:/aik/windows_7_enterprise_x86/dvd/sources/install.wim#Windows 7 ENTERPRISE" xmlns:cpi="urn:schemas-microsoft-com:cpi" /> </unattend> Unattended: <?xml version="1.0" encoding="utf-8"?> <unattend xmlns="urn:schemas-microsoft-com:unattend"> <servicing> <package action="configure" permanence="permanent"> <assemblyIdentity name="Microsoft-Windows-LocalPack-AU-Package" version="6.1.7600.16385" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="" /> <selection name="LocalPack-AU" state="true" /> </package> </servicing> <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> <ProtectYourPC>1</ProtectYourPC> <NetworkLocation>Work</NetworkLocation> <SkipMachineOOBE>true</SkipMachineOOBE> <SkipUserOOBE>true</SkipUserOOBE> </OOBE> <ShowWindowsLive>false</ShowWindowsLive> <RegisteredOrganization>Fred Health Pty. Ltd.</RegisteredOrganization> <RegisteredOwner>Fred Health Pty. Ltd.</RegisteredOwner> <TimeZone>AUS Eastern Standard Time</TimeZone> <VisualEffects> <FontSmoothing>ClearType</FontSmoothing> </VisualEffects> <WindowsFeatures> <ShowWindowsMediaPlayer>true</ShowWindowsMediaPlayer> <ShowMediaCenter>true</ShowMediaCenter> <ShowInternetExplorer>true</ShowInternetExplorer> </WindowsFeatures> <FirstLogonCommands> <SynchronousCommand wcm:action="add"> <CommandLine>"%PROGRAMFILES%\Internet Explorer\iexplore.exe" http://share.pcanu.com.au/Getting%20Started/Getting%20started%20with%20Windows%207.aspx</CommandLine> <Order>3</Order> <RequiresUserInput>true</RequiresUserInput> <Description>Welcome</Description> </SynchronousCommand> <SynchronousCommand wcm:action="add"> <Order>2</Order> <RequiresUserInput>true</RequiresUserInput> <CommandLine>cmd /c REGEDIT /S %AppsRoot%\Install\Regtweaks.Reg</CommandLine> </SynchronousCommand> </FirstLogonCommands> <TaskbarLinks> <Link2>http://share.pcanu.com.au/Getting%20Started/Getting%20started%20with%20Windows%207.aspx</Link2> <Link1>%PROGRAMFILES%\Internet Explorer\iexplore.exe http://share.pcanu.com.au/Getting%20Started/Getting%20started%20with%20Windows%207.aspx</Link1> <Link0>%windir%\system32\msra.exe</Link0> </TaskbarLinks> <DoNotCleanTaskBar>true</DoNotCleanTaskBar> <UserAccounts> <AdministratorPassword> <Value>QgB1AGQAdwBpAHMAZQByAGkAcwByAHUAYgBiAGkAJABoAEEAZABtAGkAbgBpAHMAdAByAGEAdABvAHIAUABhAHMAcwB3AG8A cgBkAA==</Value> <PlainText>false</PlainText> </AdministratorPassword> </UserAccounts> </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"> <UserLocale>en-AU</UserLocale> <UILanguage>en-AU</UILanguage> <SystemLocale>en-AU</SystemLocale> <InputLocale>en-US</InputLocale> <UILanguageFallback>en-US</UILanguageFallback> </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"> <Reseal> <Mode>OOBE</Mode> </Reseal> </component> </settings> <settings pass="specialize"> <component name="Microsoft-Windows-TerminalServices-LocalSessionManager" 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"> <fDenyTSConnections>false</fDenyTSConnections> </component> <component name="Networking-MPSSVC-Svc" 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"> <FirewallGroups> <FirewallGroup wcm:action="add" wcm:keyValue="Remote Desktop"> <Active>true</Active> <Group>Remote Desktop</Group> </FirewallGroup> <FirewallGroup wcm:action="add" wcm:keyValue="Remote Assistance"> <Group>Remote Assistance</Group> <Active>true</Active> </FirewallGroup> </FirewallGroups> </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"> <FeedList> <FeedItem wcm:action="add"> <FeedURL>http://share.pcanu.com.au/officesystems/_layouts/listfeed.aspx?List={11758C37-467F-463E-8C28-3D2BE9D31B1A}</FeedURL> <FeedTitle>Office Systems</FeedTitle> <FeedKey>1</FeedKey> </FeedItem> </FeedList> <BlockPopups>yes</BlockPopups> <FavoritesDelete>true</FavoritesDelete> <Home_Page>http://share.pcanu.com.au/Getting%20Started/Getting%20started%20with%20Windows%207.aspx</Home_Page> <SuggestedSitesEnabled>false</SuggestedSitesEnabled> <TrustedSites>*.fred.com.au;*.fredhealth.com.au;*.pcanu.com.au;*.nunet.com.au;*.erx.com.au;*.appcat.com.au</TrustedSites> <CompanyName>Fred Health Pty Ltd</CompanyName> <QuickLinkList> <QuickLinkItem wcm:action="add"> <QLID>4</QLID> <QuickLinkName>Support</QuickLinkName> <QuickLinkUrl>http://support.pcanu.com.au/</QuickLinkUrl> </QuickLinkItem> <QuickLinkItem wcm:action="add"> <QLID>1</QLID> <QuickLinkUrl>https://mail.pcanu.com.au/</QuickLinkUrl> <QuickLinkName>Webmail</QuickLinkName> </QuickLinkItem> <QuickLinkItem wcm:action="add"> <QLID>2</QLID> <QuickLinkName>LogMeIn</QuickLinkName> <QuickLinkUrl>https://secure.logmeinrescue.com/HelpDesk/Login.aspx</QuickLinkUrl> </QuickLinkItem> <QuickLinkItem wcm:action="add"> <QLID>3</QLID> <QuickLinkName>SharePoint</QuickLinkName> <QuickLinkUrl>http://share.pcanu.com.au/default.aspx</QuickLinkUrl> </QuickLinkItem> <QuickLinkItem wcm:action="add"> <QLID>5</QLID> <QuickLinkName>Win7 Getting Started</QuickLinkName> <QuickLinkUrl>http://share.pcanu.com.au/Getting%20Started/Getting%20started%20with%20Windows%207.aspx</QuickLinkUrl> </QuickLinkItem> </QuickLinkList> <DisableFirstRunWizard>true</DisableFirstRunWizard> <DisableOOBAccelerators>true</DisableOOBAccelerators> <DisableWelcomePage>true</DisableWelcomePage> </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"> <CopyProfile>true</CopyProfile> <RegisteredOrganization>Fred Health Pty. Ltd.</RegisteredOrganization> <RegisteredOwner>Fred Health Pty. Ltd.</RegisteredOwner> <ShowWindowsLive>false</ShowWindowsLive> <TimeZone>AUS Eastern Standard Time</TimeZone> <ProductKey>xxxxxxxxxxxxxxxxxxxxxxxx</ProductKey> </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"> <InputLocale>en-US</InputLocale> <SystemLocale>en-AU</SystemLocale> <UILanguage>en-AU</UILanguage> <UserLocale>en-AU</UserLocale> </component> <component name="Microsoft-Windows-RemoteAssistance-Exe" 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"> <MaxTicketExpiry>3</MaxTicketExpiry> <CreateEncryptedOnlyTickets>false</CreateEncryptedOnlyTickets> <fAllowFullControl>true</fAllowFullControl> <fAllowToGetHelp>true</fAllowToGetHelp> </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> <DoNotCleanUpNonPresentDevices>true</DoNotCleanUpNonPresentDevices> </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"> <UserAccounts> <AdministratorPassword> <Value>QgB1AGQAdwBpAHMAZQByAGkAcwByAHUAYgBiAGkAJABoAEEAZABtAGkAbgBpAHMAdAByAGEAdABvAHIAUABhAHMAcwB3AG8A cgBkAA==</Value> <PlainText>false</PlainText> </AdministratorPassword> </UserAccounts> </component> </settings> <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> <InputLocale>en-US</InputLocale> <UILanguage>en-US</UILanguage> <SystemLocale>en-AU</SystemLocale> <UserLocale>en-AU</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>true</OptIn> </Diagnostics> <UserData> <FullName>Fred</FullName> <Organization>Fred Health Pty. Ltd.</Organization> <AcceptEula>true</AcceptEula> </UserData> <EnableNetwork>true</EnableNetwork> <UseConfigurationSet>true</UseConfigurationSet> <LogPath>C:\Log</LogPath> </component> </settings> <cpi:offlineImage cpi:source="wim:d:/aik/windows_7_enterprise_x86/dvd/sources/install.wim#Windows 7 ENTERPRISE" xmlns:cpi="urn:schemas-microsoft-com:cpi" /> </unattend> Hopefully somebody can help
  11. Ok I've tried (the first half of) SonyXP's method here: http://www.msfn.org/board/install-applicat...p;view=findpost So far so good except you need to enter in the timezone, language, etc. again... So I'll try his suggestions to get around that.
  12. Hi all, I've spent a lot of time searching and haven't been able to find anything, but I keep getting the same error with my unattended whenever I try and put a RunSynchronous. Other then that it has been working fine and even my FirstLogonCommands are working great. Here is a dumb-ed down basic version of my file, I can't even get this working! And attached is the error I get.... An error occurred while querying for pending operations <?xml version="1.0" encoding="utf-8"?> <unattend xmlns="urn:schemas-microsoft-com:unattend"> <servicing></servicing> <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"> <ShowWindowsLive>false</ShowWindowsLive> <RegisteredOrganization>Fred Health Pty. Ltd.</RegisteredOrganization> <RegisteredOwner>Fred Health Pty. Ltd.</RegisteredOwner> <TimeZone>AUS Eastern Standard Time</TimeZone> <FirstLogonCommands> <SynchronousCommand wcm:action="add"> <Order>1</Order> <Description>RegTweak</Description> <CommandLine>cmd /c REGEDIT /S c:\Misc\Regtweaks.Reg</CommandLine> <RequiresUserInput>false</RequiresUserInput> </SynchronousCommand> </FirstLogonCommands> <DoNotCleanTaskBar>true</DoNotCleanTaskBar> </component> </settings> <settings pass="windowsPE"> <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"> <DiskConfiguration> <Disk wcm:action="add"> <CreatePartitions> <CreatePartition wcm:action="add"> <Order>2</Order> <Type>Primary</Type> <Extend>true</Extend> </CreatePartition> <CreatePartition wcm:action="add"> <Order>1</Order> <Size>300</Size> <Type>Primary</Type> </CreatePartition> </CreatePartitions> <ModifyPartitions> <ModifyPartition wcm:action="add"> <Active>true</Active> <Format>NTFS</Format> <Label>Windows</Label> <Letter>C</Letter> <Order>2</Order> <PartitionID>2</PartitionID> </ModifyPartition> <ModifyPartition wcm:action="add"> <Active>false</Active> <Label>System Reserved</Label> <PartitionID>1</PartitionID> <Order>1</Order> <Format>NTFS</Format> <TypeID>0x27</TypeID> </ModifyPartition> </ModifyPartitions> <DiskID>0</DiskID> <WillWipeDisk>true</WillWipeDisk> </Disk> <WillShowUI>OnError</WillShowUI> </DiskConfiguration> <ImageInstall> <OSImage> <InstallTo> <DiskID>0</DiskID> <PartitionID>2</PartitionID> </InstallTo> <InstallToAvailablePartition>false</InstallToAvailablePartition> <WillShowUI>OnError</WillShowUI> <InstallFrom> <MetaData wcm:action="add"> <Key>/IMAGE/NAME</Key> <Value>Windows 7 ENTERPRISE</Value> </MetaData> </InstallFrom> </OSImage> </ImageInstall> <EnableNetwork>true</EnableNetwork> <UseConfigurationSet>true</UseConfigurationSet> </component> </settings> <settings pass="specialize"> <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>2</Order> <Path>%WINDIR%\system32\sysprep\sysprep.exe /quiet /audit</Path> <WillReboot>OnRequest</WillReboot> <Description>reboot to audit</Description> </RunSynchronousCommand> <RunSynchronousCommand wcm:action="add"> <Order>1</Order> <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> <Description>Set up apppath</Description> </RunSynchronousCommand> </RunSynchronous> </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>%WINDIR%\system32\sysprep\sysprep.exe /quiet /oobe /reboot </Path> <WillReboot>OnRequest</WillReboot> <Description>get out of audit</Description> </RunSynchronousCommand> </RunSynchronous> </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> <Username>Administrator</Username> <LogonCount>5</LogonCount> <Enabled>true</Enabled> </AutoLogon> </component> </settings> <cpi:offlineImage cpi:source="wim:d:/aik/windows_7_enterprise_x86/dvd/sources/install.wim#Windows 7 ENTERPRISE" xmlns:cpi="urn:schemas-microsoft-com:cpi" /> </unattend>
×
×
  • Create New...