Jump to content

rpaz61

Member
  • Posts

    6
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    United States

About rpaz61

rpaz61's Achievements

0

Reputation

  1. Hello, Here's our unattend.xml file: <?xml version="1.0" encoding="utf-8"?> <unattend xmlns="urn:schemas-microsoft-com:unattend"> <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"> <Description>EnableAdmin</Description> <Order>1</Order> <Path>cmd /c net user Administrator /active:yes</Path> <WillReboot>Always</WillReboot> </RunSynchronousCommand> </RunSynchronous> </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"> <Display> <ColorDepth>32</ColorDepth> <DPI>96</DPI> <HorizontalResolution>1024</HorizontalResolution> <RefreshRate>60</RefreshRate> <VerticalResolution>768</VerticalResolution> </Display> <BluetoothTaskbarIconEnabled>true</BluetoothTaskbarIconEnabled> <ComputerName>%MachineName%</ComputerName> <DisableAutoDaylightTimeSet>false</DisableAutoDaylightTimeSet> <DoNotCleanTaskBar>true</DoNotCleanTaskBar> <RegisteredOrganization>Company Name</RegisteredOrganization> <RegisteredOwner>Company Name</RegisteredOwner> <TimeZone>Central Standard Time</TimeZone> <CopyProfile>false</CopyProfile> <ShowWindowsLive>false</ShowWindowsLive> <StartPanelOff>false</StartPanelOff> </component> <component name="Microsoft-Windows-UnattendedJoin" 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"> <Identification> <Credentials> <Domain>Domain Name</Domain> <Password>Password</Password> <Username>Username</Username> </Credentials> <JoinDomain>Domain Name</JoinDomain> <MachineObjectOU>OU=Computers,OU=USA,DC=production,DC=domain,DC=com</MachineObjectOU> </Identification> </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> <UILanguageFallback>en-US</UILanguageFallback> <UserLocale>0409</UserLocale> </component> </settings> <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> <NetworkLocation>Work</NetworkLocation> <ProtectYourPC>3</ProtectYourPC> <SkipMachineOOBE>true</SkipMachineOOBE> <SkipUserOOBE>true</SkipUserOOBE> <HideEULAPage>true</HideEULAPage> <HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE> </OOBE> <BluetoothTaskbarIconEnabled>true</BluetoothTaskbarIconEnabled> <DisableAutoDaylightTimeSet>false</DisableAutoDaylightTimeSet> <DoNotCleanTaskBar>true</DoNotCleanTaskBar> <RegisteredOrganization>Company Name</RegisteredOrganization> <RegisteredOwner>Company Name</RegisteredOwner> <TimeZone>Central Standard Time</TimeZone> <UserAccounts> <AdministratorPassword> <Value>Password=</Value> <PlainText>false</PlainText> </AdministratorPassword> <LocalAccounts> <LocalAccount wcm:action="add"> <Password> <Value>Password</Value> <PlainText>false</PlainText> </Password> <Description>Image</Description> <DisplayName>Image</DisplayName> <Group>Administrators</Group> <Name>Image</Name> </LocalAccount> </LocalAccounts> <DomainAccounts> <DomainAccountList wcm:action="add"> <Domain>Domain Name</Domain> </DomainAccountList> </DomainAccounts> </UserAccounts> <ShowWindowsLive>false</ShowWindowsLive> <StartPanelOff>false</StartPanelOff> </component> </settings> <settings pass="offlineServicing"> <component name="Microsoft-Windows-PnpCustomizationsNonWinPE" 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"> <DriverPaths> <PathAndCredentials wcm:action="add" wcm:keyValue="1"> <Credentials> <Domain>Domain Name</Domain> <Password>Password</Password> <Username>Username</Username> </Credentials> <Path>\\Servername.domain_name.com\Win7x64\Drivers</Path> </PathAndCredentials> </DriverPaths> </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"> <PersistAllDeviceInstalls>true</PersistAllDeviceInstalls> </component> </settings> <cpi:offlineImage cpi:source="wim://servername/win7x64/win7entsp2x64idev1.0.wim#Windows 7 Enterprise Edition SP1 x64 SSI IDEV Image v1.0" xmlns:cpi="urn:schemas-microsoft-com:cpi" /> </unattend> The image deploys without any issues. The only issue I'm having is that after the image is done deploying and the machine reboots for the first time, the Windows 7 Set Up prompts us to select the following: Country or region Time and currency Keyboard layout Along with being prompted to "Help protect your computer and improve Windows automatically" and select one of the following for Windows Updates: Use recommended settings Install important updates only Ask me later Any help would be appreciated. Thanks, Rob
  2. Client has 4GB RAM and the server has 2GB RAM. We're using both unattend answer files. Yes it happens with all clients (desktops or laptops). So far the guys have only tried two machines - an OptiPlex 760 and a Latitude D620. We're aware of the unicast issue with Server 2003. Currently for large Vista deployments, our operations team has a laptop configured with Server 2008 and multi-cast. The remote site server has WDS installed for machines that need re-imaging. I'm wondering if it may have to do with the fact that the server's using the onboard Broadcom NIC versus the Intel PRO1000 dual-port NIC. I may have the guys in Sydney swap NICs and test. Any thoughts? Thanks, Rob
  3. Hello, We're currently having an issue deploying our Vista w/SP1 32-bit image using WDS on a Dell PowerEdge 2800 server running Windows Server 2003 SP1. Here are the two error messages during deployment: Windows cannot install required files. Make sure all files required for installation are available, and restart the installation. Error Code : 0x800703E6 OR Windows cannot install required files. Make sure all files required for installation are available, and restart the installation. Error Code : 0x800706F8 I've research the error codes and it boils down to a file copy error with a system's DVD-ROM drive. But this is occurring during image deployment over the network. Any help/suggestions would be appreciated. Thanks!! Rob
  4. No we haven't deployed XP SP3 at all. We're currently migrating over to Vista but we still have to support our XP image for the remote sites that haven't been migrated to Vista yet but are getting new hardware. Check out this link: http://www.msfn.org/board/Integration-of-I...ve-t107504.html This should help you out. Are you deploying XP using RIS?
  5. Figured it out - used nLite to inject the drivers into the Windows XP Pro w/SP2 CD and then recreated the base RIS image install. Deployed the image to the OptiPlex 760 and the Latitude E Series laptops without any issues with the SATA Operation set to AHCI mode. Ben - let me know if you need help with using nLite. It's a pretty straight forward yet powerful tool. After adding the textmode drivers, I changed my riprep.sif back to what it was before messing with it and our production XP image deployed without any issues. Rob
  6. Hello all!! I'm having issues getting our XP Pro w/SP2 RIS image to deploy on Dell's latest OptiPlex 760 desktop and the Latitude E Series laptops (E4200/4300/6400). In the past with the older Dell machines we'd set SATA mode in the BIOS to ATA mode and our image would deploy without any problems. Now with the release of the OptiPlex 760 and the E Series, if you change the SATA Operation mode from IRRT or AHCI to ATA, the eSATA port will be disabled and we can't have that. Here's what I've done to date: 1. The following directories exist: R:\RemoteInstall\Setup\English\Images\Windows.XP.Pro.SP2.GXSeries.v1.8\$oem$\$1\Drivers\NIC R:\RemoteInstall\Setup\English\Images\Windows.XP.Pro.SP2.GXSeries.v1.8\$oem$\$1\Drivers\Storage R:\RemoteInstall\Setup\English\Images\Windows.XP.Pro.SP2.GXSeries.v1.8\$oem$\TEXTMODE 2. Modified the riprep.sif - changes in bold: [data] floppyless = "1" msdosinitiated = "1" OriSrc = "\\%SERVERNAME%\RemInst\%INSTALLPATH%\%MACHINETYPE%" OriTyp = "4" LocalSourceOnCD = 1 DisableAdminAccountOnDomainJoin = 1 [setupData] OsLoadOptions = "/noguiboot /fastdetect" SetupSourceDevice ="\Device\LanmanRedirector\%SERVERNAME%\RemInst\%INSTALLPATH%" SysPrepDevice="\Device\LanmanRedirector\%SERVERNAME%\RemInst\%SYSPREPPATH%" SysPrepDriversDevice="\Device\LanmanRedirector\%SERVERNAME%\RemInst\%SYSPREPDRIVERS%" [unattended] OemPreinstall = Yes OemPnpDriversPath = \Drivers\NIC;\Drivers\Storage DriverSigningPolicy = Ignore FileSystem = LeaveAlone ExtendOEMPartition = 0 TargetPath = \WINDOWS OemSkipEula = yes InstallFilesPath = "\\%SERVERNAME%\RemInst\%INSTALLPATH%\%MACHINETYPE%" LegacyNIC = 1 [MassStorageDrivers] "Intel® ESB2 SATA AHCI Controller" = "OEM" "Intel® ICH7R/DH SATA AHCI Controller" = "OEM" "Intel® ICH7M/MDH SATA AHCI Controller" = "OEM" "Intel® ICH8R/DH/DO SATA AHCI Controller" = "OEM" "Intel® ICH8M-E/M SATA AHCI Controller" = "OEM" "Intel® ICH9R/DO/DH SATA AHCI Controller" = "OEM" "Intel® ICH9M-E/M SATA AHCI Controller" = "OEM" "Intel® ICH10D/DO SATA AHCI Controller" = "OEM" "Intel® ICH10R SATA AHCI Controller" = "OEM" "Intel® ESB2 SATA RAID Controller" = "OEM" "Intel® ICH7R/DH SATA RAID Controller" = "OEM" "Intel® ICH7MDH SATA RAID Controller" = "OEM" "Intel® ICH8R/ICH9R/ICH10R/DO SATA RAID Controller" = "OEM" "Intel® ICH8M-E/ICH9M-E SATA RAID Controller" = "OEM" [OEMBootFiles] iaahci.cat iaAHCI.inf iastor.cat iaStor.inf iaStor.sys TXTSETUP.OEM [userData] ProductKey = "xxxxx-xxxxx-xxxxx-xxxxx-xxxxx" FullName = "Company Name" OrgName = "Company Name" ComputerName ="%MACHINENAME%" [GuiUnattended] OemSkipWelcome = 1 OemSkipRegional = 0 TimeZone = %TIMEZONE% AdminPassword = "*" [Display] BitsPerPel = 32 XResolution = 800 YResolution = 600 VRefresh = 60 [Networking] [NetServices] MS_Server=params.MS_PSched [identification] JoinDomain = %MACHINEDOMAIN% DoOldStyleDomainJoin = Yes [RemoteInstall] Repartition = Yes UseWholeDisk = Yes [OSChooser] Description ="Windows XP Pro SP2 w/Office 2003 SP1 v1.8 - OptiPlex/D&E Series/X1 Only" Help ="Windows XP Pro SP2 w/Office 2003 SP1 v1.8 - OptiPlex/D&E Series/X1 Only" LaunchFile ="%INSTALLPATH%\%MACHINETYPE%\templates\startrom.com" ImageType =SYSPREP Version="5.1 (2600)" SysPrepSystemRoot="Mirror1\UserData\WINDOWS" HalName=halaacpi.dll ProductType=0 3. Added the following to the TXTSETUP.sif: [HardwareIdsDatabase] PCI\VEN_8086&DEV_2681&CC_0106 = "iaStor" PCI\VEN_8086&DEV_27C1&CC_0106 = "iaStor" PCI\VEN_8086&DEV_27C5&CC_0106 = "iaStor" PCI\VEN_8086&DEV_2821&CC_0106 = "iaStor" PCI\VEN_8086&DEV_2829&CC_0106 = "iaStor" PCI\VEN_8086&DEV_2922&CC_0106 = "iaStor" PCI\VEN_8086&DEV_2929&CC_0106 = "iaStor" PCI\VEN_8086&DEV_3A02&CC_0106 = "iaStor" PCI\VEN_8086&DEV_3A22&CC_0106 = "iaStor" PCI\VEN_8086&DEV_2682&CC_0104 = "iaStor" PCI\VEN_8086&DEV_27C3&CC_0104 = "iaStor" PCI\VEN_8086&DEV_27C6&CC_0104 = "iaStor" PCI\VEN_8086&DEV_2822&CC_0104 = "iaStor" PCI\VEN_8086&DEV_282A&CC_0104 = "iaStor" [sCSI] iaStor = "Intel® ESB2 SATA AHCI Controller" iaStor = "Intel® ICH7R/DH SATA AHCI Controller" iaStor = "Intel® ICH7M/MDH SATA AHCI Controller" iaStor = "Intel® ICH8R/DH/DO SATA AHCI Controller" iaStor = "Intel® ICH8M-E/M SATA AHCI Controller" iaStor = "Intel® ICH9R/DO/DH SATA AHCI Controller" iaStor = "Intel® ICH9M-E/M SATA AHCI Controller" iaStor = "Intel® ICH10D/DO SATA AHCI Controller" iaStor = "Intel® ICH10R SATA AHCI Controller" iaStor = "Intel® ESB2 SATA RAID Controller" iaStor = "Intel® ICH7R/DH SATA RAID Controller" iaStor = "Intel® ICH7MDH SATA RAID Controller" iaStor = "Intel® ICH8R/ICH9R/ICH10R/DO SATA RAID Controller" iaStor = "Intel® ICH8M-E/ICH9M-E SATA RAID Controller" [sCSI.Load] iaStor = iaStor.sys,4 Now when I try to deploy our image, I receive the following error: File txtsetup.oem caused an unexpected error (18) at line 1747 in d:\xpsprsm\ base\boot\setup\oemdisk.c. I pressing any key several times the deployment is able to continue but then the image fails when trying to format the hard drive with the following error in the text mode portion of the setup: Windows XP Professional Setup ================================ The manufacturer provided file that Setup is trying to use is corrupted or invalid: Line 1 contains a syntax error. Setup cannot continue. To quit Setup, press F3. I've tried using Intel version 7.0 and 7.6 of their Storage Matrix Drivers along with Dell's drivers for the OptiPlex 760 and no luck. Any help would be greatly appreciated!! Thanks!!! Rob
×
×
  • Create New...