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 |
| | |
![]() |
Apr 15 2007, 03:23 PM Post
#61 | |
| Friend of MSFN ![]() ![]() ![]() ![]() ![]() Group: Members Posts: 709 Joined: 30-November 06 From: Behind you Member No.: 117138 OS: Vista Ultimate x64 | |
| | |
Jun 5 2007, 04:52 PM Post
#62 | |
| Newbie Group: Members Posts: 12 Joined: 30-August 06 Member No.: 109040 |
I would love a look at your x64 xml.
|
| | |
Jul 6 2007, 06:00 PM Post
#63 | |
| Friend of MSFN ![]() ![]() ![]() ![]() ![]() Group: Members Posts: 709 Joined: 30-November 06 From: Behind you Member No.: 117138 OS: Vista Ultimate x64 | |
| | |
Jul 27 2007, 07:09 AM Post
#64 | |
| Follow the rules please :-) Group: Patrons Posts: 6780 Joined: 14-November 03 From: Bangalore, India Member No.: 9470 |
Came across this bit of info recently - I'm assuming it will be available in Vista SP1 as well, and if so, it finally solves the driver problem in a simple manner. QUOTE Windows Server Longhorn Automatic Driver Injection During WinPE the system looks for the directory named $WinPEDriver$ at the root of all visible drives given a drive letter of C or greater. If this directory exists, the module then adds this path to the list of paths that it maintains to search for driver packages. When this operation is complete, the module continues to scan the answer file, if present, for additional driver paths. Because of this operation, drives that contain a $WinPEDriver$ directory in the root cause Setup to recursively search this directory for driver packages to be imported into the image during the WinPE phase. This includes hard drive partitions and removable media like floppy disk drives and flash drives. Type-27 hidden partitions are assigned a driver letter during the WinPE phase of Setup and are also searched. LINK to source - HTML from google cache | or MSword file |
| | |
Sep 18 2007, 05:25 AM Post
#65 | |
| Member ![]() ![]() Group: Members Posts: 182 Joined: 4-January 05 Member No.: 39886 |
Hi, i've been searching around and I can't find what i'm looking for, is there documentation explaining this xml file completly with all available components listed and options, or has anyone made a program to help automate it? I'd be interested in writing a simple app to toggle things on and off if there isn't already one, I know we have vlite but i'd like to be able to keep the source clean and just use an answer file many thanks! |
| | |
Sep 19 2007, 01:23 PM Post
#66 | |
| The Guy from Aus ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Members Posts: 1543 Joined: 14-November 03 From: DownUnder Member No.: 9474 |
I find the waik /wsim reference to be very helpful. There a few tools you mention on this board for automating an xml.
|
| | |
Sep 20 2007, 03:06 PM Post
#67 | |
| Follow the rules please :-) Group: Patrons Posts: 6780 Joined: 14-November 03 From: Bangalore, India Member No.: 9470 |
Yes indeed, resources for this with detailed help do exist, which is actually what I used. WAIK - a set of packages around 900 MB in size, free download from oem.microsoft.com WSIM - a graphical tool to help renerating an xml (unfortunately, an xml that passes validation by wsim will not always work as expected during setup, which is why I felt the need to post a known-to-be-working file on the forum). documentation - yes there are some CHM files contained in the WAIK and are a very useful reference, might total up to hardly 5 MB. |
| | |
Sep 22 2007, 06:19 PM Post
#68 | |
| Member ![]() ![]() Group: Members Posts: 182 Joined: 4-January 05 Member No.: 39886 |
thanks!, i'll have to start downloading and reading.. one last thing, isthe WSIM a ms tool or a user made one? ... I'm half guessing its included in the waik?, very tired, about togoto bed but just thought i'd check this quickly whilst i can, shall be looking into it as soon as i get some free time, i like the download speed from microsoft servers, seem to forget i have a 8mb connection with most sites seemingly limited!
|
| | |
Sep 28 2007, 11:13 PM Post
#69 | |
| Follow the rules please :-) Group: Patrons Posts: 6780 Joined: 14-November 03 From: Bangalore, India Member No.: 9470 |
Oh yes, it is part of WAIK.
|
| | |
Oct 13 2007, 01:58 AM Post
#70 | |
| Follow the rules please :-) Group: Patrons Posts: 6780 Joined: 14-November 03 From: Bangalore, India Member No.: 9470 |
Still waiting upon the direct drop-in folder of "Updates" to automatically install updates post-SP1. And the other drop-in folder mentioned earlier (quoted below): Came across this bit of info recently - I'm assuming it will be available in Vista SP1 as well, and if so, it finally solves the driver problem in a simple manner. QUOTE Windows Server Longhorn Automatic Driver Injection During WinPE the system looks for the directory named $WinPEDriver$ at the root of all visible drives given a drive letter of C or greater. If this directory exists, the module then adds this path to the list of paths that it maintains to search for driver packages. When this operation is complete, the module continues to scan the answer file, if present, for additional driver paths. Because of this operation, drives that contain a $WinPEDriver$ directory in the root cause Setup to recursively search this directory for driver packages to be imported into the image during the WinPE phase. This includes hard drive partitions and removable media like floppy disk drives and flash drives. Type-27 hidden partitions are assigned a driver letter during the WinPE phase of Setup and are also searched. LINK to source - HTML from google cache | or MSword file |
| | |
Mar 4 2008, 07:57 AM Post
#71 | |
| Group: Members Posts: 8 Joined: 14-February 08 Member No.: 176929 OS: Vista Ultimate x86 |
Hi there! First of all - fantastic samples! Now my question - i couldnt solve the problem yet to run a simple batchfile after installation .. as i see some of thoose samples added a line with a batchfile, follow: CODE <FirstLogonCommands> <SynchronousCommand wcm:action="add"> <CommandLine>%SystemDrive%\install\GUIrunOnce.cmd</CommandLine> <Description>customises settings</Description> <Order>20</Order> </SynchronousCommand> </FirstLogonCommands> OK here comes the question: How do i copy the install-dir into the system-drive and how could i add the variable systemdrive - or does it work after i copied the directory to the sysdir? You know .. i dont have alot of time to spend on my own Vista-DVD, thats why i dont want to get ride of WAIK, id rather use some own batchfiles to add updates and registrytweaks after installation, i think its the best solution because the implementation of updates and software dont works at all (many users reported problems on waik). i hope someone could tell me how to copy a directory from the dvd, including sub-dirs and all files and tell me if it works with the batchfile-run-line in the unattented.xml lines ive posted in the code-tag up of my post. And yes .. err .. what does the order-line means? why it counts 20? i would be very happy if someone which knows what im asking for would help me. thanks alot allready, a very interesting community, im sorry for myself that i cant spend alot of time into this, im very busy. greets, max This post has been edited by max1234: Mar 4 2008, 07:59 AM |
| | |
Feb 5 2009, 09:52 AM Post
#72 | |
| Group: Members Posts: 1 Joined: 5-February 09 Member No.: 230812 OS: Vista Enterprise x86 |
I've been searching but have not found the answer yet. In XP there were limitations within the different answer files as to the length the string could be, i.e. DriverPaths was limited to 2048 or 4096 depending upon the answer file. Are there any such limitations on any of the Vista answerfiles path type strings? My boss wants to put as many of the drivers and other files apps that we can on the network to install unattendedly instead of putting them in the image but the UNC path to the folder containing everything is already 40 characters long and I don't think there is a way for me to remapped it to a drive letter that will be there whenever it is needed without creating even bigger headaches. God i hate management sometimes. |
| | |
Feb 15 2009, 11:10 AM Post
#73 | |
| Surgeon ![]() ![]() Group: Members Posts: 159 Joined: 15-December 05 From: Cluj-Napoca, ROMANIA Member No.: 82557 OS: Windows 7 x86 | Hi to add drivers to the winPE pass you have to use : <Microsoft-Windows-PnpCustomizationsWinPE> In the Windows PE Pass CODE The Microsoft-Windows-PnpCustomizationsWinPE component is used to add one or more out-of-box drivers to a Windows installation. Drivers that are located in the path specified by DriverPaths are copied to the driver store of the Windows installation during the windowsPE configuration pass. You can add boot-critical as well as non-boot-critical drivers with this component to a Windows image before it is installed. To add them during the Offline servicing pass Use : <Microsoft-Windows-PnpCustomizationsNonWinPE> Those 2 ways Allows you to add Critical drivers NEEDED by the system. (Mass Strorage or network if use use net shares during installation.) To add them copied during the auditSystem Pass, use : <Microsoft-Windows-PnpCustomizationsNonWinPE> Int the AuditSystem Pass CODE The Microsoft-Windows-PnpCustomizationsNonWinPE component is used to add one or more out-of-box drivers to a Windows installation. Drivers that are located in the path specified by DriverPaths are copied to the driver store of the Windows installation during the auditSystem configuration pass. When the system runs Plug and Play, these out-of-box drivers are available to install hardware on the system. Tha means To install Vista on a RAID Array, you have to use WinPE to add drivers. if you want to add video drivers, you can just use the audit pass. If I try to add drivers during auditSystem I get an error, and everything hangs. I am modifying the answer file to see if I can't install the drvers during offlineServicing. Anybody knows why is this happening? Thank you |
| | |
Feb 16 2009, 08:52 AM Post
#74 | |
| Surgeon ![]() ![]() Group: Members Posts: 159 Joined: 15-December 05 From: Cluj-Napoca, ROMANIA Member No.: 82557 OS: Windows 7 x86 |
@prathapml Empty your inbox! It's full. |
| | |
Feb 17 2009, 12:49 AM Post
#75 | |
| Follow the rules please :-) Group: Patrons Posts: 6780 Joined: 14-November 03 From: Bangalore, India Member No.: 9470 |
@atolica Thanks. In the meantime, if you have any queries for me, just post in any of the threads to which I am subscribed. |
| | |
Aug 15 2009, 05:19 PM Post
#76 | |
| Newbie Group: Members Posts: 47 Joined: 28-May 05 Member No.: 57913 |
is there a sample unattend.xml for windows 7 ? if not can someone make one please ?
|
| | |
Aug 24 2009, 12:40 AM Post
#77 | |
| Gustatus similis pullus Group: Supervisor Posts: 8349 Joined: 9-September 01 From: device attached to the internet Member No.: 311 OS: Windows 7 x64 | |
| | |
![]() ![]() |
| Lo-Fi Version | Time is now: 24th November 2009 - 03:18 PM |