我们正在使用 WDS 部署 Windows 7。我们想删除在安装期间创建的本地用户帐户。我们不需要此帐户,因为计算机加入了域,并且域用户帐户是在 OOBE 阶段创建的。
文档表明Microsoft-Windows-Shell-Setup | UserAccounts | LocalAccounts
此选项可以创造本地帐户。
有没有办法指定要删除的帐户unattend.xml
?
答案1
您希望在创建 Sysprep 映像时使用审核模式。审核模式使您能够自定义 Windows 安装,而无需提示创建用户帐户并配置您的位置和时区。
参考: http://technet.microsoft.com/en-us/library/cc722413(v=ws.10).aspx
答案2
使用 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>