Windows-7
Windows 7 sysprep 期間未保留日期/時間格式
我一直按照 Mark Minasi 的時事通訊文章中的說明來 sysprep 一個 Windows 7 映像。但是,在測試部署期間,我發現在新部署的系統上創建新使用者時,我的時間和日期格式更改並未保留。
如何確保在此過程中保留時間/日期格式?謝謝!
PS 這是我正在使用的 sysprep 應答文件:
<?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"> <CopyProfile>true</CopyProfile> </component> </settings> <settings pass="generalize"> <component name="Microsoft-Windows-Security-SPP" 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"> <SkipRearm>1</SkipRearm> </component> </settings> <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"> <FirstLogonCommands> <SynchronousCommand wcm:action="add"> <Order>1</Order> <CommandLine>cmd /c del c:\windows\panther\unattend.xml</CommandLine> </SynchronousCommand> </FirstLogonCommands> </component> </settings> <cpi:offlineImage cpi:source="catalog:e:/install_windows 7 ultimate.clg" xmlns:cpi="urn:schemas-microsoft-com:cpi" /> </unattend>
進步!
按照這裡的建議,我在系統資料庫的這個地方修改了日期和時間格式設置:
HKEY_USERS.Default\Control Panel\International
我將 sShortDate 和 sShortTime 等條目更改為我想要的值。在系統上創建的 sysprep 新使用者似乎都遵循這些自定義。
如果這可以在 sysprep 答案文件中實現,我仍然更喜歡,不知何故感覺更乾淨。但是這裡描述的系統資料庫更改目前令人滿意。
您可以在 sysprep.xml 文件中設置時區。可以在此處找到有關哪些通行證有效以及支持哪些值的資訊:http ://technet.microsoft.com/en-us/library/cc749073(v=ws.10).aspx
如果您為此使用 WSIM,它位於
Microsoft-Windows-Shell-Setup
節點中,並且您在那裡設置的值Timezone
與您預期的一樣。