Jan 9 2007, 03:38 AM Post
#1 | |
| Follow the rules please :-) Group: Patrons Posts: 6780 Joined: 14-November 03 From: Bangalore, India Member No.: 9470 |
here's a working sample, made for my preferences, shared here for those who might have been having problems with their XML, & so would like to take a look at a confirmed-working sample for reference. After making use of this xml, all you need is your logic. Once i finished making it, i tried to avoid the WSIM (from WAIK) as much as possible, since WSIM needs .NET 2.0 & is complex & crashy. Attempted to include as many commonly-used options as possible, with quite a few being setup as default, but the settings are still exposed here so that you can change it to your liking. I've provided a lot of entry points to run custom setups, etc. This is for Vista Ultimate - the other editions are subsets of it, so you just need to strip out relevant parts, if you're using Vista Business/HomePremium/etc. note - i've supplied "REMOVED" as the key, you need to replace it with your own. note2 - updated to remove superfluous tags CODE <?xml version="1.0" encoding="utf-8"?> <unattend xmlns="urn:schemas-microsoft-com:unattend"> <servicing> <package action="configure"> <assemblyIdentity name="Microsoft-Windows-Foundation-Package" version="6.0.6000.16386" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="" /> <selection name="TabletPCOC" state="true" /> <selection name="TelnetClient" state="false" /> <selection name="TelnetServer" state="false" /> <selection name="Windows-Ultimate-Extras" state="true" /> <selection name="AxInstallService" state="false" /> <selection name="FaxServicesUltimate" state="true" /> <selection name="IIS-WebServerRole" state="false" /> <selection name="InboxGames" state="true" /> <selection name="Indexing-Service-Package" state="false" /> <selection name="Microsoft-Windows-RemovableStorageManagement" state="false" /> <selection name="XPS-Viewer" state="true" /> <selection name="Printing-Foundation-Features" state="true" /> <selection name="SUA" state="false" /> <selection name="NetFx3" state="true" /> </package> </servicing> <settings pass="specialize"> <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"> <Help_Page>http://www.google.com</Help_Page> <Home_Page>about:blank</Home_Page> <FilterLevel>Medium</FilterLevel> <BlockPopups>yes</BlockPopups> <ShowInformationBar>true</ShowInformationBar> <FavoritesDelete>false</FavoritesDelete> <IEWelcomeMsg>true</IEWelcomeMsg> <PlaySound>true</PlaySound> </component> <component name="Microsoft-Windows-ehome-reg-inf" 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"> <DisableExpressSetup>false</DisableExpressSetup> </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"> <fAllowToGetHelp>false</fAllowToGetHelp> </component> <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-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> <Enabled>true</Enabled> <LogonCount>2</LogonCount> </AutoLogon> <BluetoothTaskbarIconEnabled>false</BluetoothTaskbarIconEnabled> <Display> <ColorDepth>32</ColorDepth> <DPI>120</DPI> <HorizontalResolution>1024</HorizontalResolution> <RefreshRate>75</RefreshRate> <VerticalResolution>768</VerticalResolution> </Display> <Themes> <DefaultThemesOff>false</DefaultThemesOff> </Themes> <WindowsFeatures> <ShowInternetExplorer>true</ShowInternetExplorer> <ShowMediaCenter>true</ShowMediaCenter> <ShowWindowsMail>true</ShowWindowsMail> <ShowWindowsMediaPlayer>true</ShowWindowsMediaPlayer> </WindowsFeatures> <RegisteredOwner>0wner</RegisteredOwner> <RegisteredOrganization>0wn Inc.</RegisteredOrganization> <DoNotCleanTaskBar>false</DoNotCleanTaskBar> <StartPanelOff>false</StartPanelOff> <ShowWindowsLive>true</ShowWindowsLive> <CopyProfile>true</CopyProfile> <ComputerName>Computer</ComputerName> <TimeZone>India Standard Time</TimeZone> </component> <component name="Microsoft-Windows-SQMApi" 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"> <CEIPEnabled>0</CEIPEnabled> </component> <component name="Microsoft-Windows-SystemRestore-Main" 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"> <DisableSR>1</DisableSR> </component> <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>true</fDenyTSConnections> </component> <component name="Microsoft-Windows-UnattendedJoin" 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"> <Identification> <JoinWorkgroup>LAN</JoinWorkgroup> </Identification> </component> <component name="Security-Malware-Windows-Defender" 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"> <DisableAntiSpyware>false</DisableAntiSpyware> </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 /> <DomainProfile_EnableFirewall>true</DomainProfile_EnableFirewall> <PrivateProfile_EnableFirewall>true</PrivateProfile_EnableFirewall> <PublicProfile_EnableFirewall>true</PublicProfile_EnableFirewall> <PrivateProfile_DisableNotifications>false</PrivateProfile_DisableNotifications> </component> </settings> <settings pass="oobeSystem"> <component name="Microsoft-Windows-ehome-reg-inf" 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"> <WorkOffline>false</WorkOffline> </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"> <OEMInformation> <Logo>%SystemRoot%\120x120x32.bmp</Logo> <Manufacturer>Alienware</Manufacturer> <Model>top-of-the-line model</Model> <SupportURL>http://www.google.com</SupportURL> </OEMInformation> <OOBE> <HideEULAPage>true</HideEULAPage> <NetworkLocation>Home</NetworkLocation> <ProtectYourPC>3</ProtectYourPC> <SkipMachineOOBE>true</SkipMachineOOBE> <SkipUserOOBE>true</SkipUserOOBE> </OOBE> <UserAccounts> <LocalAccounts> <LocalAccount wcm:action="add"> <Password> <Value>QueCera</Value> <PlainText>true</PlainText> </Password> <Description>the PC doctor!</Description> <DisplayName>Vaidh</DisplayName> <Group>Administrators</Group> <Name>Vaidh</Name> </LocalAccount> <LocalAccount wcm:action="add"> <Description>everyday use</Description> <DisplayName>Normal Usage</DisplayName> <Group>Users</Group> <Name>Normal Usage</Name> </LocalAccount> </LocalAccounts> </UserAccounts> <VisualEffects> <FontSmoothing>Standard</FontSmoothing> </VisualEffects> <FirstLogonCommands> <SynchronousCommand wcm:action="add"> <CommandLine>%SystemDrive%\install\GUIrunOnce.cmd</CommandLine> <Description>customises settings</Description> <Order>20</Order> </SynchronousCommand> </FirstLogonCommands> </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> <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>0409:00000409</InputLocale> <SystemLocale>en-us</SystemLocale> <UILanguage>en-us</UILanguage> <UserLocale>en-US</UserLocale> <UILanguageFallback>en-US</UILanguageFallback> </component> </settings> <settings pass="auditSystem"> <component name="Microsoft-Windows-PnpCustomizationsNonWinPE" 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:keyValue="cd7c395" wcm:action="add"> <Path>%SystemRoot%\PnPdrvrs</Path> </PathAndCredentials> </DriverPaths> </component> </settings> <settings pass="generalize"> <component name="Microsoft-Windows-Security-Licensing-SLC" 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"> <SkipRearm>0</SkipRearm> </component> <component name="Microsoft-Windows-SharedAccess" 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"> <EnableICS>false</EnableICS> </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"> <Diagnostics> <OptIn>false</OptIn> </Diagnostics> <DiskConfiguration> <WillShowUI>Always</WillShowUI> </DiskConfiguration> <DynamicUpdate> <Enable>false</Enable> </DynamicUpdate> <UserData> <ProductKey> <WillShowUI>Never</WillShowUI> <Key>REMOVED</Key> </ProductKey> <AcceptEula>true</AcceptEula> <FullName>0wner</FullName> <Organization>0wn Inc.</Organization> </UserData> <ComplianceCheck> <DisplayReport>Never</DisplayReport> </ComplianceCheck> <LogPath>%SystemRoot%\temp</LogPath> <UseConfigurationSet>true</UseConfigurationSet> <ImageInstall> <OSImage> <InstallFrom> <MetaData wcm:action="add"> <Value>Windows Vista ULTIMATE</Value> <Key>1</Key> </MetaData> </InstallFrom> <WillShowUI>OnError</WillShowUI> </OSImage> </ImageInstall> </component> <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> <WillShowUI>Never</WillShowUI> </SetupUILanguage> <InputLocale>en-US</InputLocale> <SystemLocale>en-US</SystemLocale> <UILanguage>en-US</UILanguage> <UILanguageFallback>en-US</UILanguageFallback> <UserLocale>en-US</UserLocale> </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"> <Description>command1</Description> <Order>10</Order> <Path>cmd /C %SystemDrive%\install\one.cmd</Path> </RunSynchronousCommand> <RunSynchronousCommand wcm:action="add"> <Description>command2</Description> <Order>20</Order> <Path>cmd /C %SystemDrive%\install\cmdlines.cmd</Path> </RunSynchronousCommand> </RunSynchronous> </component> </settings> <cpi:offlineImage cpi:source="wim:k:/sources/install.wim#Windows Vista ULTIMATE" xmlns:cpi="urn:schemas-microsoft-com:cpi" /> </unattend> This post has been edited by prathapml: Jun 6 2007, 12:30 PM |
| | |
![]() |
Mar 13 2007, 12:57 PM Post
#2 | |
| The Guy from Aus ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Members Posts: 1543 Joined: 14-November 03 From: DownUnder Member No.: 9474 |
Yes still haven't found a way to kill the network page on first startup?
|
| | |
prathapml a sample autounattend.xml - working good Jan 9 2007, 03:38 AM
MAVERICKS CHOICE Thanks prathapml
Noticed you toggled on many feat... Jan 9 2007, 01:53 PM
urie QUOTE prathapml, Once i finished making it, i trie... Jan 9 2007, 07:12 PM
prathapml Thats true, WSIM has assigned that key - and its j... Jan 10 2007, 11:00 AM
maxXPsoft QUOTE (prathapml @ Jan 10 2007, 11:00 AM)... Jan 11 2007, 10:27 AM
FireGeier CODEThere's no existing solution that i'm ... Jan 10 2007, 11:28 AM
EmRoD I'm using an usb key to complete unattended in... Jan 17 2007, 03:16 AM
FireGeier QUOTE (EmRoD @ Jan 17 2007, 10:16 AM) I... Jan 17 2007, 05:30 PM
prathapml Now this looks like the final piece of the puzzle ... Jan 17 2007, 05:07 PM
EmRoD Hi
to add drivers to the winPE pass you have to ... Jan 18 2007, 12:52 AM
atolica QUOTE (EmRoD @ Jan 18 2007, 08:52 AM) Hi
... Feb 15 2009, 11:10 AM
FireGeier Hello EmRoD!
I've tested your method usin... Jan 18 2007, 02:33 AM
EmRoD QUOTE (FireGeier @ Jan 18 2007, 09:33 AM)... Jan 18 2007, 06:08 AM
MAVERICKS CHOICE Very nice find indeed. I'm sure there will be ... Jan 18 2007, 03:52 AM
prathapml Hmm, went to read it, the AIK guide directs you to... Jan 19 2007, 03:18 AM
FireGeier CODEAnd its neither quick to implement, nor does i... Jan 19 2007, 07:51 AM
nushu I'd like to thank EmRoD for pointing out the %... Jan 27 2007, 05:35 AM
FireGeier QUOTE (nushu @ Jan 27 2007, 12:35 PM) ...... Jan 27 2007, 07:47 AM
prathapml QUOTE (FireGeier @ Jan 27 2007, 07:17 PM)... Jan 27 2007, 05:27 PM
nDrew QUOTE (prathapml @ Jan 27 2007, 05:27 PM)... Jan 28 2007, 01:55 AM
prathapml QUOTE (nDrew @ Jan 28 2007, 01:25 PM) As ... Jan 28 2007, 04:00 AM
nDrew QUOTE (prathapml @ Jan 28 2007, 04:00 AM)... Jan 28 2007, 08:18 AM
FireGeier Thank's for sharing nDrew!
Martin Jan 29 2007, 08:12 AM
maxXPsoft QUOTE (FireGeier @ Jan 29 2007, 08:12 AM)... Jan 29 2007, 11:12 AM
FireGeier @maxXPsoft:
No, I've not tested it yet, but I... Jan 29 2007, 01:10 PM
urie QUOTE (FireGeier @ Jan 29 2007, 07:10 PM)... Jan 29 2007, 08:41 PM
FireGeier QUOTE (urie @ Jan 30 2007, 03:41 AM) ... ... Jan 30 2007, 11:20 AM
shortie Hi all,
I', using a local copy of my vista dv... Jan 29 2007, 03:46 PM
maxXPsoft QUOTE (shortie @ Jan 29 2007, 03:46 PM) W... Jan 29 2007, 08:41 PM
shortie Hi,
nobody who could give me a hint what's wr... Jan 30 2007, 05:54 AM
maxXPsoft shortie
2 things i would delete from PE
LogPath
Pa... Jan 30 2007, 07:09 AM
shortie Thanks maxXPsoft,
installation is running now.
On... Jan 30 2007, 07:34 AM
FireGeier Hello shortie!
Look here.
Martin Jan 30 2007, 11:01 AM
maxXPsoft http://www.msfn.org/board/index.php?showto...mp;#e... Jan 31 2007, 12:50 AM
EmRoD If you want to get rid of the configetroot folder ... Jan 31 2007, 01:45 AM
FireGeier @ EmRoD:
For sure this works, but it's not li... Jan 31 2007, 02:42 AM
maxXPsoft and yes you can remove the dir it copies with a co... Feb 2 2007, 10:24 PM
sp00f It doesnt work for me, each time i edit things lik... Feb 11 2007, 11:01 AM
maxXPsoft lol sp00f its up to everyone to look closely at an... Feb 13 2007, 08:56 AM
sp00f QUOTE (maxXPsoft @ Feb 13 2007, 03:56 PM)... Feb 13 2007, 07:17 PM
maxXPsoft QUOTE here's a working sample, made for my pre... Feb 14 2007, 11:48 AM
nDrew but how to disable those warnings at unsigned driv... Feb 14 2007, 09:53 PM
Mateus Hello!
Can somebody help me ?
Sorry but I am... Feb 15 2007, 03:44 PM
prathapml Looks like i'm not so scared of the "UseC... Mar 1 2007, 07:00 PM
MAVERICKS CHOICE Hey guys few q's
How to stop windows on first... Mar 5 2007, 03:57 PM
sp00f QUOTE (MAVERICKS CHOICE @ Mar 5 2007, 10... Mar 13 2007, 09:13 AM
Fatila Thanks for your pointers.
In the MS AIK guide, it... Mar 8 2007, 07:58 PM
prathapml I'm back - found this about system-variable fo... Mar 11 2007, 02:07 PM
MAVERICKS CHOICE Thanks, Have bookmarked & will try the network... Mar 11 2007, 03:33 PM
prathapml Hmm, do you mean this page comes up before first l... Mar 11 2007, 03:52 PM
MAVERICKS CHOICE This is happening straight after setup on first lo... Mar 11 2007, 04:27 PM
keul I apply reg tweaks during first login (with autolo... Mar 12 2007, 02:55 PM
sp00f QUOTE (MAVERICKS CHOICE @ Mar 13 2007, 07... Mar 13 2007, 06:33 PM
prathapml I use the sample autounattend.xml in first post ... Mar 13 2007, 06:47 PM
MAVERICKS CHOICE @prathapml
Yes I have the same Network setting as... Mar 14 2007, 02:58 AM
keul prathapml: is your oemlogo displayed when you use ... Mar 17 2007, 08:40 AM
MAVERICKS CHOICE mc: I use a modded version of prathapml's auto... Mar 17 2007, 01:56 PM
sp00f <StartPanelOff>true</StartPanelOff> do... Mar 17 2007, 12:38 PM
sp00f I tried this on a x64 version, but then WAIK shows... Apr 13 2007, 01:06 PM
prathapml The xml in first post is for 32-bit only. The x64 ... Apr 13 2007, 11:40 PM
sp00f QUOTE (prathapml @ Apr 14 2007, 07:40 AM)... Apr 15 2007, 03:23 PM
jaybot I would love a look at your x64 xml. Jun 5 2007, 04:52 PM
sp00f QUOTE (jaybot @ Jun 6 2007, 12:52 AM) I w... Jul 6 2007, 06:00 PM
prathapml Came across this bit of info recently - I'm as... Jul 27 2007, 07:09 AM
prathapml Still waiting upon the direct drop-in folder of ... Oct 13 2007, 01:58 AM
Stead Hi, i've been searching around and I can't... Sep 18 2007, 05:25 AM
MAVERICKS CHOICE I find the waik /wsim reference to be very helpful... Sep 19 2007, 01:23 PM
prathapml Yes indeed, resources for this with detailed help ... Sep 20 2007, 03:06 PM
Stead thanks!, i'll have to start downloading an... Sep 22 2007, 06:19 PM
prathapml Oh yes, it is part of WAIK. Sep 28 2007, 11:13 PM
max1234 Hi there! First of all - fantastic samples... Mar 4 2008, 07:57 AM
Fire I've been searching but have not found the ans... Feb 5 2009, 09:52 AM
atolica @prathapml
Empty your inbox! It's full. Feb 16 2009, 08:52 AM
prathapml @atolica
Thanks. I've just been putting off c... Feb 17 2009, 12:49 AM
chessonly is there a sample unattend.xml for windows 7 ? if ... Aug 15 2009, 05:19 PM
cluberti QUOTE (chessonly @ Aug 15 2009, 07:19 PM)... Aug 24 2009, 12:40 AM![]() ![]() |
| Lo-Fi Version | Time is now: 22nd November 2009 - 05:35 PM |