Jump to content

s.stormont

Member
  • Posts

    24
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    United States

About s.stormont

s.stormont's Achievements

0

Reputation

  1. Figured this out: 64 bit Vista requires <ComputerName>%MACHINENAME%</ComputerName> in order to pull the pre-created computer name from AD
  2. We are running WDS on a Windows 2008 server. To setup computers, we create a computer account in AD and set the GUID as the MAC padded by 0s. I have included both the "ImageUnattend.xml" files for our 32 bit and 64 bit images. The 32 bit image joins the domain just fine and uses the computer account that we created before the install. The 64 bit image joins the network, but a random computer name is generated. How come it works on the 32 bit image, but not the 64 bit one and how can I fix it? Thanks. 32 bit ImageUnattend.xml <?xml version="1.0" encoding="utf-8" ?> - <unattend xmlns="urn:schemas-microsoft-com:unattend"> - <settings pass="specialize"> - <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"> <ComputerName>*</ComputerName> <RegisteredOrganization>IMS, Inc.</RegisteredOrganization> <TimeZone>Eastern Standard Time</TimeZone> <RegisteredOwner /> </component> </settings> - <settings pass="oobeSystem"> - <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>en-us</InputLocale> <SystemLocale>en-us</SystemLocale> <UILanguage>en-us</UILanguage> <UserLocale>en-us</UserLocale> </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"> - <OOBE> <HideEULAPage>true</HideEULAPage> <NetworkLocation>Work</NetworkLocation> <ProtectYourPC>1</ProtectYourPC> <SkipUserOOBE>true</SkipUserOOBE> </OOBE> - <UserAccounts> - <DomainAccounts> - <DomainAccountList wcm:action="add"> - <DomainAccount wcm:action="add"> <Group>Administrators</Group> <Name>Domain Admins</Name> </DomainAccount> <Domain>OMNI.IMSWEB.COM</Domain> </DomainAccountList> </DomainAccounts> - <AdministratorPassword> <Value>UABhACQAJAB3AG8AcgBkAEEAZABtAGkAbgBpAHMAdAByAGEAdABvAHIAUABhAHMAcwB3AG8AcgBkAA==</Value> <PlainText>false</PlainText> </AdministratorPassword> </UserAccounts> - <AutoLogon> <Domain>OMNI</Domain> <Username>Administrator</Username> <Enabled>false</Enabled> - <Password> <Value>UABhACQAJAB3AG8AcgBkAFAAYQBzAHMAdwBvAHIAZAA=</Value> <PlainText>false</PlainText> </Password> </AutoLogon> <RegisteredOrganization>IMS, Inc.</RegisteredOrganization> <RegisteredOwner /> <TimeZone>US Eastern Standard Time</TimeZone> </component> </settings> <cpi:offlineImage cpi:source="wim://venus/reminst/images/SilverSpring/install.wim#Windows Vista ENTERPRISE" xmlns:cpi="urn:schemas-microsoft-com:cpi" /> </unattend> 64 bit ImageUnattend.xml <?xml version="1.0" encoding="utf-8" ?> - <unattend xmlns="urn:schemas-microsoft-com:unattend"> - <settings pass="specialize"> - <component name="Microsoft-Windows-Shell-Setup" 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"> <ComputerName /> <RegisteredOrganization>IMS, Inc.</RegisteredOrganization> <RegisteredOwner /> <TimeZone>Eastern Standard Time</TimeZone> </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>OMNI</Domain> <Password>******</Password> <Username>compacct</Username> </Credentials> <JoinDomain>OMNI.IMSWEB.COM</JoinDomain> </Identification> </component> </settings> - <settings pass="oobeSystem"> - <component name="Microsoft-Windows-International-Core" 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"> <InputLocale>en-us</InputLocale> <SystemLocale>en-us</SystemLocale> <UILanguage>en-us</UILanguage> <UserLocale>en-us</UserLocale> </component> - <component name="Microsoft-Windows-Shell-Setup" 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"> - <AutoLogon> - <Password> <Value>UABhACQAJAB3AG8AcgBkAFAAYQBzAHMAdwBvAHIAZAA=</Value> <PlainText>false</PlainText> </Password> <Domain>OMNI</Domain> <Enabled>false</Enabled> <Username>Administrator</Username> </AutoLogon> - <OOBE> <HideEULAPage>true</HideEULAPage> <NetworkLocation>Work</NetworkLocation> <ProtectYourPC>1</ProtectYourPC> <SkipUserOOBE>true</SkipUserOOBE> </OOBE> - <UserAccounts> - <AdministratorPassword> <Value>UABhACQAJAB3AG8AcgBkAEEAZABtAGkAbgBpAHMAdAByAGEAdABvAHIAUABhAHMAcwB3AG8AcgBkAA==</Value> <PlainText>false</PlainText> </AdministratorPassword> - <DomainAccounts> - <DomainAccountList wcm:action="add"> <Domain>OMNI.IMSWEB.COM</Domain> - <DomainAccount wcm:action="add"> <Name>Domain Admins</Name> <Group>Administrators</Group> </DomainAccount> </DomainAccountList> </DomainAccounts> </UserAccounts> <RegisteredOrganization>IMS, Inc.</RegisteredOrganization> <RegisteredOwner /> <TimeZone>US Eastern Standard Time</TimeZone> </component> </settings> <cpi:offlineImage cpi:source="wim://venus/reminst/images/SilverSpring/install.wim#Windows Vista ENTERPRISE" xmlns:cpi="urn:schemas-microsoft-com:cpi" /> </unattend>
  3. Yes, that does it.That way you'll have the default items installed. (some items are NOT installed by default, so you might want to enable those, but if you just want the default set of items that get installed normally, then dont worry) I really did want every single option installed instead of just defaults. Is there a way to do that?
  4. I have the Professional version and want to install everything that one would normally install doing a "Full" install. Does leaving the OptionState line commented out do this, or does someone have a config.xml file that lists every single OptionState item so that a full install can be completed? Here is what our file looks like now. It looks like it removed all of the Office 2003 items that were installed and installed Access, Excel, Outlook, Powerpoint, Word, and Publisher and I'm assuming that all of the features were installed? <Configuration Product="Pror"> <Display Level="none" CompletionNotice="no" SuppressModal="Yes" AcceptEula="Yes" /> <!-- <Logging Type="standard" Path="%temp%" Template="Microsoft Office Professional Setup(*).txt" /> --> <!-- <PIDKEY Value="BCDFGHJKMPQRTVWXY2346789B" /> --> <!-- <USERNAME Value="Customer" /> --> <COMPANYNAME Value="IMS, Inc." /> <INSTALLLOCATION Value="%programfiles%\Microsoft Office 2007" /> <!-- <LIS CACHEACTION="CacheOnly" /> --> <!-- <SOURCELIST Value="\\server1\share\Office12;\\server2\share\Office12" /> --> <DistributionPoint Location="\\omni\ss\pc_software\Office2007_Pro" /> <!-- <OptionState Id="OptionID" State="absent" Children="force" /> --> <Setting Id="Reboot" Value="IfNeeded" /> <!-- <Command Path="msiexec.exe" Args="/i \\server\share\my.msi" QuietArg="/q" ChainPosition="after" Execute="install" /> --> </Configuration>
  5. What did I do wrong? I ran aut2exe and converted the script to dtools408.exe. I then added it to my list of programs to install in WPA. When it tries to install, I get this error: AutoIt Error Line 0 (File "D:\Software\Apps\Dtools\dtools408.exe"): RunWait($executable & "/S /D="&@ProgramFilesDir & "\" & $directory,@ScriptDir) Error: Unable to execute the external program. The system cannot find the file specified.
  6. I was able to install the AMD Dual Core Optimizer 1.0 silently, but they switched installers with the version and I can't get it to run silently. What switches should I use?
  7. I was able to install Norton Internet Security 2006 silently using this command in WPI: %CDROM%\Software\Apps\NIS\SymSetup.EXE /O REBOOT=ReallySuppress /qb When I use the same command to install Internet Security 2007, I get a window that pops up on reboot that says: cfgwiz Failed to launch _tInternalWinMain OK Has anyone silently installed NIS 2007 successfully?
  8. I'm still unable to figure this out. I think it requires the use of the /f1 and /f2 switches. Can anyone help?
  9. I saw a post that said earlier versions of this can be installed silently using the InstallShield method, but I can't seem to get this one to work. I've tried creating the setup.iss file using the -R option and then installing with -s, but that didn't work. I'm using WPI to install Ntune from the CD. All of the other apps that I have configured install fine.
  10. I was hoping for a script for just DivxPlay not DivXcreate. MHz script works for just DivxCreate, correct?
  11. Psyonide, For me, the script just sits on the screen where you have to choose if you want to install the Google Desktop or not. I'm using Divx 6.1.1. I see the code that says it should make a selection but it doesn't. Any ideas?
  12. I thought I remembered reading about the change that needs to be made to either of the .reg files in the Catalyst install so that "Same as desktop" is set as the refresh rate during an unattended install. I searched but can't seem to find it now. Was I imagining it?
  13. Figured it out: As I mentioned, I have a number of PCs with the Intel D865GBF motherboard in them. All PCs have Windows 2000 SP4 installed on them and all have the Intel INF 6.3.0.1008. I was able to get the cloning process to work on 2 of the PCs. When we move a drive to a new system, we follow the steps listed here: http://support.microsoft.com/default.aspx?...b;en-us;Q314082 I found one of the PCs on which I was able to successfully clone from the IDE drive to the SATA drive and looked at the versions of the files listed in the article above. They were: atapi.sys 5.0.2195.6699 intelide.sys 5.0.2195.6666 pciide.sys 5.0.2195.6655 pciidex.sys 5.0.2195.6672 The versions on the PCs that weren't cloning were older versions, even though the same service pack was installed and the same version of the chipset INF. If I copied those 4 files to one of the PCs that wasn't cloning and then tried to complete the clone again, it worked! So know I'm trying to figure out what installed the update version of those files on the PC that worked. One of the recommended Windows 2000 updates? Steve
×
×
  • Create New...