Windows-7

Sysprep 和 unattend.xml:刪除 Windows 7 上的本地使用者帳戶

  • January 8, 2015

我們正在使用 WDS 部署 Windows 7。我們要刪除在安裝過程中創建的本地使用者帳戶。我們不需要此帳戶,因為機器加入域並且在 OOBE 階段創建了域使用者帳戶。

Microsoft-Windows-Shell-Setup | UserAccounts | LocalAccounts說明此選項可以創建本地帳戶的文件。

有沒有辦法指定要刪除的帳戶unattend.xml

您希望在創建 Sysprep 映像時使用審核模式。審核模式使您能夠自定義 Windows 安裝,而無需提示創建使用者帳戶並配置您的位置和時區。

參考: http ://technet.microsoft.com/en-us/library/cc722413(v=ws.10).aspx

使用 cmd 文件net user "user name" /delete

一部分Unattend.xml

       <FirstLogonCommands>
           <SynchronousCommand wcm:action="add">
               <Description>Executing lastboot script</Description>
               <Order>1</Order>
               <CommandLine>c:\temp\lastboot.cmd</CommandLine>
           </SynchronousCommand>
           <SynchronousCommand wcm:action="add">
               <Description>logoff corrent user</Description>
               <Order>2</Order>
               <CommandLine>shutdown /l /f</CommandLine>
           </SynchronousCommand>
       </FirstLogonCommands>

引用自:https://serverfault.com/questions/497204