Windows 7 Sysprep time zone

jjason01

New member
Local time
2:10 PM
Messages
3
So I have about 800 pc's that we are deploying and going to image with Windows 7 Pro 32bit. I have only used Windows 7 sysprep a few times and have been working on getting a new answer file working on it.

I have also everything working the way I want to. The only screen I want the user to be prompted for is the computer name screen. Right now it asks for the computer name like it should but also comes up with the time and timezone screen with the correct info so I have to click next.

Has anyone seen this? I have made sure to put in the correct time zone info and everything but it keeps coming up with the time zone page.

Any help would be great!
 

My Computer

OS
Windows 7 Pro 32 and 64bit
This is how the block looks in my Autounattend.xml file, this is right from the top of the file.

<?xml version="1.0" encoding="utf-8"?>
<unattend xmlns="urn:schemas-microsoft-com:unattend">
<settings pass="oobeSystem">
<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">
<OOBE>
<HideEULAPage>true</HideEULAPage>
<ProtectYourPC>1</ProtectYourPC>
<NetworkLocation>Work</NetworkLocation>
</OOBE>
<TimeZone>Eastern Standard Time</TimeZone>
</component>
</settings>
 

My Computer

Computer Manufacturer/Model Number
Self-Built in July 2009
OS
Windows 7 Ultimate x64
CPU
Intel Q9550 2.83Ghz OC'd to 3.40Ghz
Motherboard
Gigabyte GA-EP45-UD3R rev. 1.1, F12 BIOS
Memory
8GB G.Skill PI DDR2-800, 4-4-4-12 timings
Graphics Card(s)
EVGA 1280MB Nvidia GeForce GTX570
Sound Card
Realtek ALC899A 8 channel onboard audio
Monitor(s) Displays
23" Acer x233H
Screen Resolution
1920x1080
Hard Drives
Intel X25-M 80GB Gen 2 SSD
Western Digital 1TB Caviar Black, 32MB cache. WD1001FALS
PSU
Corsair 620HX modular
Case
Antec P182
Cooling
stock
Keyboard
ABS M1 Mechanical
Mouse
Logitech G9 Laser Mouse
Internet Speed
15/2 cable modem
Other Info
Windows and Linux enthusiast. Logitech G35 Headset.
Perfect thanks. I changed mine to eastern standard time and it worked. I will set it to mountain standard time like I need it and try it. I think I just put in the wrong name for the time zone. Thanks for your help!!
 

My Computer

OS
Windows 7 Pro 32 and 64bit
Yeah, i've chased down typos in Autoattend.xml before for work deployments. Sometimes you think you actually spend more time automating these tasks then they save you. But like you said, you are doing 800 installs...you don't want to click through all of the screens over and over and over again.

Glad I could help.
 

My Computer

Computer Manufacturer/Model Number
Self-Built in July 2009
OS
Windows 7 Ultimate x64
CPU
Intel Q9550 2.83Ghz OC'd to 3.40Ghz
Motherboard
Gigabyte GA-EP45-UD3R rev. 1.1, F12 BIOS
Memory
8GB G.Skill PI DDR2-800, 4-4-4-12 timings
Graphics Card(s)
EVGA 1280MB Nvidia GeForce GTX570
Sound Card
Realtek ALC899A 8 channel onboard audio
Monitor(s) Displays
23" Acer x233H
Screen Resolution
1920x1080
Hard Drives
Intel X25-M 80GB Gen 2 SSD
Western Digital 1TB Caviar Black, 32MB cache. WD1001FALS
PSU
Corsair 620HX modular
Case
Antec P182
Cooling
stock
Keyboard
ABS M1 Mechanical
Mouse
Logitech G9 Laser Mouse
Internet Speed
15/2 cable modem
Other Info
Windows and Linux enthusiast. Logitech G35 Headset.
So pparks1 so you know if you can use sysprep in Win 7 to join a domain but without having a username and password in the xml file. To have it prompt the user for log in info?
 

My Computer

OS
Windows 7 Pro 32 and 64bit
I'm not aware of any way to join the domain during the autounattend.xml without providing clear text passwords. My only suggestion here is to create a user with just enough rights to join a user to the domain and use this during the rollout. Disable it when not in use. Or change it often and just modify the autounattend.xml to reflect the new credentials. I've read a few times online that you can use WISM and encrypt the password...but I've not had it work for me.

I almost always leave adding the computer to the domain as a manual task. This way I can create the objects in the appropriate OU's first and then just join them later.
 

My Computer

Computer Manufacturer/Model Number
Self-Built in July 2009
OS
Windows 7 Ultimate x64
CPU
Intel Q9550 2.83Ghz OC'd to 3.40Ghz
Motherboard
Gigabyte GA-EP45-UD3R rev. 1.1, F12 BIOS
Memory
8GB G.Skill PI DDR2-800, 4-4-4-12 timings
Graphics Card(s)
EVGA 1280MB Nvidia GeForce GTX570
Sound Card
Realtek ALC899A 8 channel onboard audio
Monitor(s) Displays
23" Acer x233H
Screen Resolution
1920x1080
Hard Drives
Intel X25-M 80GB Gen 2 SSD
Western Digital 1TB Caviar Black, 32MB cache. WD1001FALS
PSU
Corsair 620HX modular
Case
Antec P182
Cooling
stock
Keyboard
ABS M1 Mechanical
Mouse
Logitech G9 Laser Mouse
Internet Speed
15/2 cable modem
Other Info
Windows and Linux enthusiast. Logitech G35 Headset.
if you use Mysysprep2 you can do that with the following code:

<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>%Please input user domain%</Domain>
<Username>%Please input user name%</Username>
<Password>%Please input user password%</Password>
</Credentials>
<JoinDomain>%Please input a domain to join%</JoinDomain>
</Identification>
</component>
 

My Computer

Computer type
PC/Desktop
Computer Manufacturer/Model Number
custom build
OS
Windows 7 Ultimate x64
Back
Top