在這教授如何設定應答文件(unattend.xml)來達到免手動設定而達到sysprep的目的:
Windows 7 settings:
1. 先安裝Windows 7 Pro 中文版。(版本隨意,看要先裝哪一個都可)
2. 安裝其他的語系。(在我的例子我裝的是英文版跟日文版)
Dism /online /add-package /packagepath:c:\English.cab (指定你的cab檔的位置)
Dism /online /add-package /packagepath:c:\Japanese.cab
安裝完之後在c:\windows\system32\sysprep底下會多出 en-US and ja-JP的資料夾。
應答文件(Answer file)settings: 必須先安裝WAIK 3.1 (For Windows 7 SP1)
1. 執行Windows System Image Manager,並且把Windows 7 Pro or Ultimate的光碟片放進光碟機裡。
2. 在"選取Windows映像或類別目錄檔案"地方按右鍵後選擇"選擇Windows映像",這時"選取Windows映像"視窗會出現。選擇光碟片所在位置的source\install.wim,或者直接選取clg檔(看你的版本是哪一個,我是選取Pro版本的cfg檔),然後按下確定。
3. 在"回應檔案"欄位,在"....建立或開啟回應檔案"地方按右鍵,選擇"新建回應檔案"
4. 這時在"Windows 映像"的欄位裡,展開Components選項,我們要將一些元件拉進Answer file裡:
a. Microsoft-Windows-PnpSysprep_neutral (右鍵選擇 Pass 3 generalize(3))
DoNotCleanUpNonPresen = true
PersistAllDeviceInstalls = true
b. Microsoft-Windows-Shell-Setup_neutral (右鍵選擇 Pass 4 specialize(4))
ComputerName = *
ProductKey = "這得自行輸入"
TimeZone = "Taipei Standard Time"
c. Microsoft-Windows-International-Core_neutral (右鍵選擇 Pass 7 specialize(7))
InputLocale = "en-US"
SystemLocale = "en-US"
UILanguage = "en-US"
UILanguageFallback = "en-US"
UserLocale = "en-US"
d. Microsoft-Windows-Shell-Setup_neutral (右鍵選擇 Pass 7 specialize(7))
OOBE->HideEULAPage = "true"
OOBE->NetworkLocation = "work"
OOBE->ProtectYourPC = 1
UserAccounts->LocalAccounts->LocalAccount->Description = "Test"
UserAccounts->LocalAccounts->LocalAccount->DisplayName = "123"
UserAccounts->LocalAccounts->LocalAccount->Group = "administrators"
UserAccounts->LocalAccounts->LocalAccount->Name = "test"
設定完後另存新檔為任一檔案, like AF123.xml
將AF123.xml放在c:\windows\system32\sysprep底下,然後在命令提示列裡執行以下的指令
cd sysprep
sysprep /oobe /generalize /shutdown /unattend:AF123.xml
等待關機後就可以進行大量部署了。
P.S.: 若要做Autologon的話,Autologon的Username需填字串得跟LocalAccount->Name一樣
留言列表