Jump to content

jschuk

Member
  • Posts

    4
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    United States

Everything posted by jschuk

  1. When you get to the welcome screen that asks to create a user, press CTRL-ALT-F3 to enter Audit mode. Once in Audit mode you can install applications and reboot the computer as you need so long as you don't reseal the computer. I have been working on my image both ways, under audit mode and under local administrator, and some stuff is persistent through the sysprep and some stuff isn't no matter which method I am using. I am still trying to work on that issue along with a few other issues.
  2. I did find a script that allows me to change the computer name during setup. It reboots one more time in the process, but the reboot occurs after most of the setup is complete and it not very noticeable. I modified the script to include the domain username and password so it only prompts for the computer name. http://www.msserveradmin.com/add-a-custom-script-to-a-vista-syspreped-image/
  3. Thank you for the netsetup.log file. I found that my computer was actually joining the domain, just not with the machine name I gave it. This caused issues where the computer account was not found because it seems the computer name is being changed after it joins. I changed my answer file to specify a machine name like yours and it works fine, but our company needs to be able to manually specify a machine name for each computer. I tried leaving the machine name blank (I had the line deleted altogether originally) and it just randomly generates a name without prompting us for one. I see that you are specifying a machine name. Are you changing this field for each computer you deploy? Do you have something else that changes the name later in the process? Jason
  4. I have been trying to create an unattended script for Windows 7 for the past several weeks. I have searched the forums and found a few tips regarding using FQDN for domain joins. I have seen other unresolved posts for people with the same issue of not being able to join their computer. I am not sure why mine is not working. I have built a reference image in Audit Mode and am running sysprep /generalize /oobe /shutdown /unattend:win7answer.xml. When the machine comes back up, it prompts for Machine Name and TimeZone (good) and proceeds to login under my Administrator account, but it never joins the domain. I would like to put the computer in a specific OU, but I have tried it leaving the Machine Object blank as well to let it go to the default Computers OU. I have verified my domain creds are correct as I can manally join the computer to the domain. I renamed the setupact.log to setupact.txt <?xml version="1.0" encoding="utf-8"?> <unattend xmlns="urn:schemas-microsoft-com:unattend"> <settings pass="generalize"> <component name="Microsoft-Windows-Security-SPP" 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>1</SkipRearm> </component> </settings> <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"> <Order>1</Order> <Path>net user administrator /active:yes</Path> </RunSynchronousCommand> </RunSynchronous> </component> <component name="Microsoft-Windows-Security-SPP-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"> <CopyProfile>true</CopyProfile> <ShowWindowsLive>false</ShowWindowsLive> <TimeZone>Mountain Time Zone</TimeZone> </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> <Credentials> <Domain>COMPANY.COM</Domain> <Password>P455W0RD</Password> <Username>JOINER</Username> </Credentials> <JoinDomain>COMPANY.COM</JoinDomain> <MachineObjectOU>OU=Desktop Computers,OU=COMPANY Computers, DC=COMPANY,DC=com</MachineObjectOU> <DebugJoin>true</DebugJoin> </Identification> </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> <UILanguageFallback>en-us</UILanguageFallback> <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"> <AutoLogon> <Password> <Value>aQBjAGEAbgB0AGUAbAB1AFAAYQBzAHMAdwBvAHIAZAA=</Value> <PlainText>false</PlainText> </Password> <Enabled>true</Enabled> <LogonCount>5</LogonCount> <Username>administrator</Username> <Domain></Domain> </AutoLogon> <FirstLogonCommands> <SynchronousCommand wcm:action="add"> <CommandLine>cscript //b c:\windows\system32\slmgr.vbs /ipk XXXXX-XXXXX-XXXXX-XXXXX-XXXXX</CommandLine> <Order>1</Order> <RequiresUserInput>false</RequiresUserInput> </SynchronousCommand> <SynchronousCommand wcm:action="add"> <Order>2</Order> <CommandLine>cscript //b c:\windows\system32\slmgr.vbs /ato</CommandLine> <RequiresUserInput>false</RequiresUserInput> </SynchronousCommand> </FirstLogonCommands> <OOBE> <HideEULAPage>true</HideEULAPage> <NetworkLocation>Work</NetworkLocation> <ProtectYourPC>1</ProtectYourPC> </OOBE> <UserAccounts> <AdministratorPassword> <Value>aQBjAGEAbgB0AGUAbAB1AEEAZABtAGkAbgBpAHMAdAByAGEAdABvAHIAUABhAHMAcwB3AG8AcgBkAA==</Value> <PlainText>false</PlainText> </AdministratorPassword> <LocalAccounts> <LocalAccount wcm:action="add"> <Password> <Value>aQBjAGEAbgB0AGUAbAB1AFAAYQBzAHMAdwBvAHIAZAA=</Value> <PlainText>false</PlainText> </Password> <Description>Local Administrator</Description> <DisplayName>Administrator</DisplayName> <Group>Administrators</Group> <Name>Administrator</Name> </LocalAccount> </LocalAccounts> </UserAccounts> <RegisteredOrganization>VISTAR Corporation</RegisteredOrganization> <RegisteredOwner>VISTAR Corporation</RegisteredOwner> <ShowWindowsLive>false</ShowWindowsLive> <WindowsFeatures> <ShowWindowsMediaPlayer>false</ShowWindowsMediaPlayer> <ShowMediaCenter>false</ShowMediaCenter> </WindowsFeatures> </component> </settings> <cpi:offlineImage cpi:source="catalog:c:/users/wdg/desktop/install_windows 7 professional.clg" xmlns:cpi="urn:schemas-microsoft-com:cpi" /> </unattend> Copy of Win7Answer.xml setupact.txt
×
×
  • Create New...