Jump to content


chinnp

Established Members
  • Posts

    2
  • Joined

  • Last visited

Everything posted by chinnp

  1. I'm trying to automate WDS image deployment. I put this script together that seems to work very nicely on computers with hard drives less than 100 GB. On drives that are bigger than 100 GB or so it will only format the first 30 GB, install there and leaves the rest of the hard drive unpartitioned and untouched. I want to preserve the OEM recovery partition, wipe out everything on the rest of the hard drive and write my image there. Here's my script: <?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">'>http://schemas.microsoft.com/WMIConfig/2002/State"> <DiskConfiguration> <WillShowUI>OnError</WillShowUI> <Disk wcm:action="add"> <ModifyPartitions> <ModifyPartition wcm:action="add"> <Active>true</Active> <Extend>false</Extend> <Format>NTFS</Format> <Label>Local Disk</Label> <Letter>C</Letter> <Order>1</Order> <PartitionID>1</PartitionID> </ModifyPartition> </ModifyPartitions> <DiskID>0</DiskID> <WillWipeDisk>false</WillWipeDisk> </Disk> </DiskConfiguration> <WindowsDeploymentServices> <Login> <Credentials> <Domain>www.windows-noob.com</Domain> <Password>netsys</Password> <Username>administrator</Username> </Credentials> </Login> <ImageSelection> <InstallTo> <DiskID>0</DiskID> <PartitionID>1</PartitionID> </InstallTo> </ImageSelection> </WindowsDeploymentServices> </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> </SetupUILanguage> <InputLocale></InputLocale> <SystemLocale></SystemLocale> <UILanguage>en-US</UILanguage> <UserLocale></UserLocale> </component> </settings> </unattend>
  2. I was put in charge of setting up WDS on the server in the shop at work. (We do IT outsourcing and deploy the same machine to multiple clients.) I finally got it up and running and no longer have to download a hundred and some odd updates from Microsoft. The problem is with MS Office 2007. For some reason, Windows Update won't update Office products that aren't activated. The machine I imaged had Office on it, but it wasn't activated. If I image a machine with an activated version of Office, will that mess up the Office activation. With my current setup I have to image the machine, activate Office, update it and then pack the machine back up. I want to be able to image the machine, activate Office and be done with it. I don't know if Sysprep will severely affect Office or if I'll be able to activate Office again using the same key I used previously.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.