Rob's Blog

A bunch of random notes from working in IT

Unattended XP Installs with Windows Deployment Services

| 58 Comments

Reference for myself (and anyone else that’s interested) – here’s my unattend.xml file for installing Windows XP SP2 completely unattended. Using this in conjunction with a sysprep.inf file, you can achieve a completely unattended XP install using Windows Deployment Services.

Firstly, you need an unattend.xml file. This tells the Windows PE boot device what to do – what language to use, what credentials to use connecting to the WDS server, how to partition the disk and which image to deploy. You specify this at the server level – in the WDS console, right-click on your server name, choose properties and the client tab. Tick the Enable unattended installation check box and browse to your unattend.xml file – good practice dictates storing this in your WDSClientUnnatend folder under the RemoteInstall share.

My XP unattended file (called, inventively, xp_unattend.xml) looks like this:


<?xml version="1.0" encoding="utf-8"?>
<unattend xmlns="urn:schemas-microsoft-com:unattend">
    <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"&gt;
            <DiskConfiguration>
                <WillShowUI>OnError</WillShowUI>
                <Disk wcm:action="add">
                    <CreatePartitions>
                        <CreatePartition wcm:action="add">
                            <Order>1</Order>
                            <Type>Primary</Type>
                            <Extend>true</Extend>
                        </CreatePartition>
                    </CreatePartitions>
                    <ModifyPartitions>
                        <ModifyPartition wcm:action="add">
                            <Active>true</Active>
                            <Format>NTFS</Format>
                            <Label>WinXP</Label>
                            <Letter>C</Letter>
                            <Order>1</Order>
                            <PartitionID>1</PartitionID>
                        </ModifyPartition>
                    </ModifyPartitions>
                    <DiskID>0</DiskID>
                    <WillWipeDisk>true</WillWipeDisk>
                </Disk>
            </DiskConfiguration>
            <WindowsDeploymentServices>
                <Login>
                    <Credentials>
                        <Domain>your domain</Domain>
                        <Username>domain username</Username>
                        <Password>password</Password>
                    </Credentials>
                </Login>
                <ImageSelection>
                    <WillShowUI>OnError</WillShowUI>
                    <InstallImage>
                        <ImageName>Image Name as displayed in WDS</ImageName>
                        <ImageGroup>Image Group</ImageGroup>
                        <FileName>WIM Image Filename</FileName>
                    </InstallImage>
                    <InstallTo>
                        <DiskID>0</DiskID>
                        <PartitionID>1</PartitionID>
                    </InstallTo>
                </ImageSelection>
            </WindowsDeploymentServices>
        </component>
    </settings>
</unattend>

The next part of our completely unattended setup is an XP sysprep.inf file. Again you can store this on the WDS server – navigate to your RemoteInstall share again and under the Images folder you’ll see your WDS Image Groups. As my image is called "winxpsp2.wim", I’ll create a folder called winxpsp2. In this folder, I’ll create the $OEM$ directory structure, within which I’ll put a folder called $1, within which I’ll make a folder called sysprep, which is where the sysprep.inf file will go. Phew! For reference, in my enviroment, this means that we’re looking at D:\RemoteInstall\Images\Windows XP\winxpsp2\$OEM$\$1\sysprep\sysprep.inf.

Here’s my XP sysprep.inf file:


;SetupMgrTag
[Unattended]
OemSkipEula=Yes
InstallFilesPath=C:\sysprep\i386

[GuiUnattended]
AdminPassword="Your Admin Password Here"
EncryptedAdminPassword=NO
OEMSkipRegional=1
TimeZone=85
OemSkipWelcome=1

[UserData]
ProductKey=Your Product Key Here
FullName="Your Name Here"
OrgName="Your Company Name Here"
ComputerName=%MACHINENAME%

[TapiLocation]
CountryCode=44
Dialing=Tone
AreaCode=020
LongDistanceAccess="9"

[RegionalSettings]
LanguageGroup=1

[SetupMgr]
DistFolder=C:\sysprep\i386
DistShare=windist

[Identification]
JoinDomain=%MACHINEDOMAIN%
DoOldStyleDomainJoin=Yes

[Networking]
InstallDefaultComponents=Yes

Using these two files and Windows Deployment Services on Windows Server 2003 SP2, I’m instaling PC’s in a completely unattended fashion from the network. Easy!

About these ads

58 thoughts on “Unattended XP Installs with Windows Deployment Services

  1. Kinda-Sorta when I try to add the .xml file for unattended mode my server tells me: “This image version does not support adding an unattended setup file using this method. For more information please see the Windows deployment services documentation.”

    What? I’ve customized an XP Pro SP2 install with MS Office etc then ran sysprep to reseal it. Next, it shutdown and during boot I ran the “Capture Image” option from my WDS server. This was setup using the info found in article 81873 Windows Deployment Services Update Step-by-Step Guide for Windows Server 2003.

    So, my captured image is on the WDS server in the images folder. Now, I’ve followed the outline above until I get to the error above.

    Help?

  2. I just saw my mistake… The option to add the unattend.xml file to the image is NOT at the image level but at the server. This is what was outlined, I just read between the lines and was a step or two early.

    Thanks!

  3. I did everything according your spec but some im getting an error:

    WdsClient: An error occured while communicicating with the Deployment Service server.

    If i unclick the Enable Unattended Installation. The process will work it just wont be unattended. When I use your .xml file i modified it to the right settings. ill paste here:

    OnError

    1
    Primary
    true

    true
    NTFS
    WinXP
    C
    1
    1

    0
    true

    ad
    eddie
    ******

    OnError

    xpsp2_unattended.wim
    xpimage
    xpsp2_unattended.wim

    0
    1

    and here is my directory structure for the sysprep

    E:\RemoteInstall\Images\XPImage\xpsp2_unattended\$OEM$\$1\syspref.inf

    ;SetupMgrTag
    [Unattended]
    OemSkipEula=Yes
    InstallFilesPath=C:\sysprep\i386

    [GuiUnattended]
    AdminPassword=*
    EncryptedAdminPassword=NO
    OEMSkipRegional=1
    TimeZone=35
    OemSkipWelcome=1

    [UserData]
    ProductKey=xxxxx-xxxxx-xxxxx-xxxxx-xxxxx
    FullName=”SEMEC”
    OrgName=”SEMEC”
    ComputerName=*

    [SetupMgr]
    DistFolder=C:\sysprep\i386
    DistShare=windist

    [Identification]
    JoinWorkgroup=WORKGROUP

    [Networking]
    InstallDefaultComponents=Yes

    SO im not sure what Im doing wrong. any ideas?

    Edited 30th November by Rob – removed Windows Product Key!

  4. Nevermind figured it out.. Oh. rob please delete my top post.

  5. I am having a difficult time understanding how to use WDS to do a fresh install of Windows XP SP2.

    Everything I have read so far talks about using an working computer with Windows XP SP2 already installed and using Sysprep then imaging it. I don’t want to use an existing system. I want to use the files from the Windows XP SP2 installation CD. For example, I want to create a new virtual machine using VMware, boot that vm, connect to WDS via PXE and do a brand new unattended installation of WinXPSP2 using the setup files I created using Setup Manager.

    I read through the posting above and see,

    As my image is called “winxpsp2.wim”, I’ll create a folder called winxpsp2. In this folder, I’ll create the $OEM$ directory structure, within which I’ll put a folder called $1, within which I’ll make a folder called sysprep, which is where the sysprep.inf file will go. Phew! For reference, in my enviroment, this means that we’re looking at D:\RemoteInstall\Images\Windows XP\winxpsp2\$OEM$\$1\sysprep\sysprep.inf.

    I can’t figure out how to create winxpsp2.wim. I assume this is not an image of an existing computer, but one made from the WinXPSP2 install disk.

    Can somebody help me out please. I am going nuts. :)

  6. Is there anyway for the computername to be entered manually before the install of the image.

    For example machine name to be entered after PE has loaded and then the entered computername to amened the unattend.txt? Ths could then run the XP setup with the custom unattend file.

    Regards.

  7. Hi

    Excellent instructions.

    I seem to be having a different problem to everyone else. I don’t have any issues with the .xml file but I am having problems with the sysprep file.

    I have a folder structure exactly the same as yours, however when I start a new build it seems to completely ignore the sysprep file.

    I get the image OK, but I have to install it attended. Nothing is pre-filled etc.

    Any ideas what I am doing wrong?

    Many thanks

    Paul

  8. Hello..

    I agree with Tall Paul .. Excellent instructions !! But I also have the same problem with the sysprep file.. my image is installed but the sysprep.inf file is totally ignored. When I read the help file they say that the sysprep.inf should be put in the $OEM$ directory.. I tried that as well without success..

    Tall Paul, did you find a solution for this behavior ?

    Thanks

  9. I found the solution to my problem.. when you run sysprep on the machine you must check the Mini-Setup before you press reseal, otherwise the sysprep will be ignored.

  10. Hi

    Very good instructions but Iam having some difficulties with sysprep.inf after the image is installed the sysprep file does not exist, followed your example exactly but can’t get it to work. Also either I’m missing the point or it is doing exactly what it should, when the client starts up you have to enter all the windows details to finish the install i.e. product key, local password, etc and then run the sysprep to join to domain and finish install fully. In the help files of the Windows System Image Manager it explains that you can also add things like product key however it does say it is for Windows Vista family but it also says that about disk configuration. So I have added the product key to the XML but it does not work should it work? If it is possible to get the product key in it would miss out a typing prduct key in, and if the sysprep file is to be run after install could this not be built in to the client image.

    Regards

  11. Thanks Rob.

    I’ve followed your other WDS guides and found them quite helpful. This is just what I’ve been looking for.

    Cheers!!

  12. Carl,

    You need to run sysprep before you capture the image to your WDS server. You do this by executing sysprep.exe from the sysprep folder you put on the C: drive of the machine you are capturing. Windows will delete this folder when the process is finished.

    If your clients are starting and asking for setup information then a sysprep.inf file is not being read. This file is necessary to instruct Windows on how to configure itself. Running sysprep after the fact doesn’t work; it’s a before capture process to prep the machine (strips uniqueness) for mass roll out.

    WSIM can only generate XML unattended files for the Windows Vista OS so you need to use a combination of unattend.xml and sysprep.inf as shown by Rob above. If you run SIM and show an XP wim file it barfs and fails.

    You need to construct the folder hierarchy as described by Rob so your sysprep.inf file (made using setupmgr.exe from the deploy.cab) gets read during the imaging process.

    As far as putting a product key into the unattend.xml, I’m sure it can be done but since the sysprep.inf (in this tutorial) is providing it, it’s not necessary.

    Good luck!

  13. To JPenrose

    I have been using sysprep to prepare to image but what I have not been doing is using the mini setup and shut down to pre-configure all the settings in the image before copying it to the WDS server. Would this solve all my problems because I would not require the sysprep file attached to the image. I realise this would make every machine identical. Could I specify an additional file in the sysprep image which would rename each client differently from a share ?

    I could not see the wood for the trees

    Thanks JPenrose

  14. That’s a darn good question Carl and one I’m currently researching. I want to be able to have the client parse a file to get a name and then join itself to the Domain. There’s always pre-staging but I’m looking for something less labor intensive.

    I’ll report back to this thread when I find a solution.

  15. Hey Rob & Carl,

    I’m having difficulties naming the PC’s and joining them to ActiveDirectory. Here is the scenario:

    Right now what I’m doing is resealing the machines with sysprep and the sysprep.inf copied on c:\sysprep, and the name the computer configures is the one specified on the sysprep.inf file. When I configure the “New Client Naming Policy” on WDS the computer still configures the name specified on the sysprep.inf, if I don’t put the “ComputerName” key on the sysprep.inf file, the minisetup asks for the computer name during the inicial setup/startup, so the initial setup is always ignoring the “New Client Naming Policy” on the DirectoryServices Tab on WDS.

    What I need to know is, in your procedure, how do you close or which parameter do you use on sysprep, right now I’m using Reseal and MiniSetup, and do you seal the machine with the sysprep.inf file included in the image or just place the sysprep.inf on the path you previously described?

    Thanks for the help,

    Carlos V.

  16. @JPenrose and @carl

    I have been using MySysprep to circumvent HAL restrictions when deploying hardware independent XP images via WDS. However, MySysprep will also allow you to rename machines in many different combinations at installation (and join to the domain) and may help do what you want.

    I’ve also written (or cobbled together from a variety of sources) a series of step-by-step type guides on building and deploying generic hardware independent XP images using WDS. This covers the use of sysprep and sysprep.inf files and may be of some use to you guys.

    I hope that there is something in there that helps to fill in any gaps as it took me ages to collect together and sift through all the conflicting advice and guidance and know how frustrating it all can be!

    Dave.

  17. Pingback: WDS-Image auf Basis eines Windows XP PCs erstellen » Stefan Macke

  18. This saved my bacon. As posted by someone above the “help” file (yes you can laugh now) says to put the sysprep.inf file in the $OEM$ directory, not the $OEM$/$1/sysprep directory. Now my unattended install works perfectly. I’ve been searching the web for a week looking for this solution, and this is the only site that had it.

    THANK YOU ROB!
    JB

  19. Hi, i have a question.

    You specify this at the server level – in the WDS console, right-click on your server name, choose properties and the client tab. Tick the Enable unattended installation check box and browse to your unattend.xml file

    How can you link these xml & sysrep.inf files to images if you have several XP images?

  20. Hello,

    Rob you got some nice Guides about the WDS, It really helps me with a lot.

    My only question is, How did you make the XML files for the Windows XP Sysprep Image?

    Because I do can create xml files with ‘Image manager’ for my unattended Vista Images.
    But if i want to do it on the same way for the Windows Xp image ill get some errors.

    Does ‘image Manager’ not support sysprepe images or did i something wrong with sysprep?

    ok, 2 questions.

    Thanx for the help,

    McRonald.

  21. I’m having a little trouble using the %MACHINENAME% tag. I created my image, ran sysprep, (mini-setup, reseal), captured it in WDS and then imaged a computer with it. My only problem is when the sysprep.inf file is copied to the computer, that tag gets deleted.

    This is what happens:

    before
    ….
    ComputerName=%MACHINENAME%

    After

    ComputerName=

    Anyone have any ideas as why this may happen?

    Thanks,
    Justin

  22. Hi there for those who wanna build a wds im using this one..suits just fine for me!
    http://vkgbijdehand.nl/up…crosoft_WDS_Server_EN.pdf

    Thanks for :

    As my image is called “winxpsp2.wim”, I’ll create a folder called winxpsp2. In this folder, I’ll create the $OEM$ directory structure, within which I’ll put a folder called $1, within which I’ll make a folder called sysprep, which is where the sysprep.inf file will go. Phew! For reference, in my enviroment, this means that we’re looking at D:\RemoteInstall\Images\Windows XP\winxpsp2\$OEM$\$1\sysprep\sysprep.inf.

    This gotten me further

  23. Hi Rob,

    Thanks for publishing such a useful information.

    I have a question regarding attended.xml , As we are using only one xml file which is mapped at server level.If we have several images of XP,Windows server 2003 and Vista how this will function?

    Thanks in advance,
    Umesh

  24. I run into the same problem as Umesh – Can’t not deploy a capture image for XP or Server with multiple partitions and different partition size – WDS is not too flexible to detect the image for XP as single partition or server/vista with multiple partition – If anyone know the work around, please post your solution.

    I was able to tweek for unattended install mode (for single or multiple partition) but I can’t get it to work under deploy capture image (preconfigure setting) — it only able to image to a whole single partition

    Thank you in advance.

    Quang

  25. works great – unattended all the way through!

    however is there anyway to have this work for multiple images?

    Ideally what i would like is to boot into different WinPE sessions from PXE which will then load their own unattended.xml files and point to specified image and settings.

    e.g. when i hit F12 to network boot i get presented with a range of WinPE’s to boot into
    Desktop Image
    Laptop Image
    Workstation Image

  26. Why would I need a new sysprep.inf file when the one on my image is setup perfect?

    If I need to put one in this folder \Images\Windows XP\winxpsp2\$OEM$\$1\sysprep, do I include my long list of OEMPNPDriversPath=? or SysprepMassStorage??

    Can it be the same one as on my image?

    Thanks,
    Jason

    • Jason,

      I can’t remember exactly from memory (it’s been a while since I did this now) but I think that WDS over-wrote whatever sysprep file you included on the image. Give it a go and see if it still works; if not I’d copy the sysprep file to the server.

      Hope this helps

  27. Hello,
    where to put the sysprep.inf?
    Is the modified sysprep.inf needed on the client under c:\sysprep , too?
    Where to save the file on the WDS server?
    Bye Martin

  28. Pingback: More Windows Deployment Services Information

  29. I get error with seems my wds doesn’t understand this syntax. Also i can’t open same in internet explorer erro:

    The XML page cannot be displayed
    Cannot view XML input using XSL style sheet. Please correct the error and then click the Refresh button, or try again later.

    ——————————————————————————–

    The operation completed successfully. Error processing resource ‘file:///REMINST/WdsClientUnattend/WDSClientUnat…

  30. I read some documentation that suggested that WDS appended any sysprep.inf in the $OEM$ folder to the one found in the .wim image.

    Depending on your setup, you could put the common parameters on the image, and have specifics on the server, which you could change easier, without using imagex.

  31. Hi Rob
    Great site, I was searching for this and you got the answer man. awesome!

    In addition to your great guide I can contribute for those who want to deploy multiple images.

    Just modify your unattend.xml file in \remoteInstall\WdsClientUnattend\ so that the part telling the WDS witch image to use is empty, like this..

    And that’s it. Now when you PXE boot your client machine and choose “Deploy Windows” (or whatever your bootimage is) the only question asked when the bootimage loads is to choose the image you want to deploy, the rest then is completelly unattended.
    Thanx again!

    /R

  32. Rodrigo,
    I can not make work more than one images.
    On works perfect with Rob’s files xml and sysprep.ini

    From your explanation it’s not very clear what to do.
    You say:
    Just modify your unattend.xml file in \remoteInstall\WdsClientUnattend\ so that the part telling the WDS witch image to use is empty, like this..

    Like what?
    In xml install section there is an option to add the name of the second image.
    But what about second sysprep.ini. should I create a new folders for the second sysprep in

    D:\RemoteInstall\Images\Windows XP\winxpsp2\$OEM$\

    Please give detailed explanation for adding second image if you did it.

    Thx.
    Michael.

  33. Pingback: WDS - ein paar Fragen - Forum Fachinformatiker.de

  34. Hello Rob,

    thanks for your Article, it saved me alot of time ;)

    but placing the sysprep.inf on the Reminst share dowsnt work for me. I simply put it on the client folder “sysprep” which i used for sysprep the Masterinstallation.

    thx
    Chris

  35. hi,
    i got a problem while joining the domain at the miniinstall – the installer doesn’t accept the username/password :-(

    i use this configuration:

    [Identification]
    JoinDomain=%MACHINEDOMAIN%
    DoOldStyleDomainJoin=Yes

    ~ i think he tries to use the username, used to logon to the wds server (uses correct domainname), but it doesn’t work

    when i give a specific username in the sysprep.inf it doesn’t work either..

    [Identification]
    JoinDomain=%MACHINEDOMAIN%
    DoOldStyleDomainJoin=Yes
    DomainAdmin=foo\bar
    DomainAdminPassword=mypassword

    any ideas?

  36. Hi,

    I use the two files described above to install XP and it works perfectly!

    It would however be great if anyone knows how you edit the sysprep file so that you also will be able to define what OU the computer will end up in? I tried the following but the WDS just ignores it and instead uses the OU defined by the WDS.

    [Identification]
    JoinDomain = %MACHINEDOMAIN%
    DoOldStyleDomainJoin = Yes
    MachineObjectOU = “OU = WDSNotebooks,DC = mydomain,DC = net”

    It would be really great if you could put Notebooks in one OU and Workstations in another.

    BR
    Rikard

  37. Pingback: sysprep xp for wds « swyda_techblog

  38. Is it normal, that the installation process is asking me to select the image I want to install? I have configured it in the unattend.xml file (InstallImage), just as the example above, but the installer keeps asking me for the install image …. ?

    I read Microsoft-Windows-Setup is only Vista or higher compatible, but my boot image is vista anyway …

  39. Pingback: more sysprep file details « swyda_techblog

  40. Hi Rob!

    Excellent guide!
    But i am having some problems with the sysprep.inf. The file is properly deployed to the computer, but the sysprep isn’t prefilled with sysprep.inf, instad, som of the forms is filled with, for example %OrgName%, which isn’t definied in sysprep.inf.

    Help!
    How do i make sysprep listen to my sysprep.inf? When i sysprep the computer before creating image, i run sysprep /mini /reseal.

  41. Hello, thanks for the excellent guide – like many people here it seems, I still can’t get this to work properly – the GUI portion of Setup still completely ignores sysprep.inf, ristndrd.sif, etc.

    Can you provide information on how to get NON-SYSPREP images to work (i.e. RIS copies of an XP CD)?

    Any help is most appreciated!

  42. Hi,

    I know this is an old page, but I am really hoping that I can get some kind of response from someone, as Google seems to be failing me.

    Basically I am trying to edit the xp_unattend.xml so that it will create 2 hard disk partitions, a C: of 60gig and a D: using the rest of the space on the drive.

    This is what the disk config section of my .xml file looks like:

    OnError

    1
    Primary
    true
    60000

    2
    Logical
    true

    true
    NTFS
    WinXP
    C
    1
    1

    true
    NTFS
    Data
    D
    2
    2

    0
    true

    The problem I encounter is that this does not appear to actually do anything. I know that my xml file is being used, as it is automatically logging on to the domain for me, but the Hard Disk window still appears, and shows my entire drive as unallocated space.

    If anyone can point me in the right direction, or see what I have done wrong, I would very much appreciate your feedback.

    Thanks,

    -Ben

  43. Please do does anyone know anything about deploying to virtual machines?

  44. I’m set on the sysprep.inf file (Fully automated) I’ve used this in the past on my WDS & works perfectly with the XP images I have created. I’ve been doing them manually and decided that I want to remotely deploy images via Wake On Lan, Unattended.xml (Basically I want to install the OS from the comforts of my own office & have it set up to where it picks the correct image to deploy, partitions the drive, & adds it the the domain)

    Now here’s my question:

    How do I create the unattended.xml file for XP to do all the things I mentioned above? I’m stuck on the “Windows System Image Manager” where creating the answer file comes alittle confusing for me. Is there a guide to create the answer file for an XP image? This is the only part that I’m stuck on so far…the sysprep.inf file is set and ready to go, but I’m alittle confused on this part.

    Any help, or links would be greatly appreciated.

    Thanks.

  45. Ok, I got my unattend.xml file working to a certain point. Basically,

    It will log me into the WDS (Credentials), Select the specific Image, Create the partition I set up…..& then it just sits there. I have to manually push “NEXT” to start “deploying” the image.

    I’m going to do some research on that right now, but I’ll just post this in case someone else has already ran into this problem and whats to share a solution.

    Thanks Rob, for the create article.

  46. Hi,

    I dont usually post comments on websites like these but i just had to say great instructions and thank you very much.

    Regards,

    Luke

  47. Spoony, any chance you are still here…please respond, as I am trying to accomplish the same thing as you :) And the same problem seems to be bugging me too! :-s
    Did you find the solution for your problem? Could you post it here? Or email me at allein(a)net4u.hr? I am very interested to know if you managed to solve this, and how!
    Thanks Rob for the article!

  48. hi there great thread you have going there!

  49. Pingback: WDS Unattended help

  50. Hi Rob, how are you linking your sysprep.inf to your xp.wim image that you are installing.

    My unattended.xml is supplys language admin username and password etc.. but does not autoselect the image that i want to install (but I can live with that).

    i deployment image is sitting image group windows xp image and is called xptestcapture.wim (so in e:remoteinstallimageswindows xp imagexptestcapture.wim) and my sysprep.inf file is sittin in e:remoteinstallimageswindows xp image$oem$$1sypprep.inf)

    when i pxe boot i am presented with the screen to select image to deploy, i select my image and it expands and reboots the computer

    upon reboot brings up the 30 sec timer (the screen that comes up when windows crashes), i press enter to select boot up “windows normally”. It then goes through a number of steps where I
    accept licence agreement, ok computer name, enter product key, select local admin password.

    the machine reboots and my xp image with all its software is installed.

    What am I doing wrong?

  51. It is still necessary to include sysprep if I already captured and uploaded a sysprepped image?

  52. I have also been having trouble getting XP SP3 to deploy unattended. The sysprep.inf file that I have at C:\sysprep\sysprep.inf works perfectly when I deploy the syspreped image with Acronis.

    However, when I build a configuration and then a deployment set in RPK 3.4, the ensuing image does not use my sysprep.inf for an unattended setup. I am trying to use the xml posted to generate a usable XPUnattend.xml, but I have not been able to get that working.

    If any of the previous posters could let me know how they got their deployments working I would be forever grateful.

  53. I got some help that solved my issue. It turns out WindowsPE was running a command called startnet.cmd that was overwriting my sysprep.inf. I then found a batch script that removes the two lines in startnet.cmd that are causing the problem.

  54. Pingback: Deploying XP machines fails to use Prestaged Computer Name - Admins Goodies

  55. Well, to be honest, Im still inversed in the happy ending of the terrific movie and the cool and charming Audrey Hepburn with fashion sunglasses linger in my mind. You can express your personal style, pull together the components of any room, furniture, flooring and wall cover . Hospitality supplies Dubai help in adorning a space, especially home and work areas. The companies offering such services have seen a growth in their business as there a . Extensive knowledge of paints coupled with expert workmanship is provided in Ot . oakley daisy chain sunglasses blue http://www.soaho-fakeoakleys.com/oakley-daisy-chain-sunglasses-blue-p-9023.htm

  56. Good day I am so delighted I found your blog, I really found you
    by accident, while I was looking on Digg for something else, Anyways I am here now and would just
    like to say thanks a lot for a marvelous post and a all round entertaining blog
    (I also love the theme/design), I don’t have time to go through
    it all at the minute but I have bookmarked it and also added your RSS feeds,
    so when I have time I will be back to read a lot more,
    Please do keep up the fantastic b.

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out / Change )

Twitter picture

You are commenting using your Twitter account. Log Out / Change )

Facebook photo

You are commenting using your Facebook account. Log Out / Change )

Connecting to %s