我正在将自动创建的虚拟机作为预置设备添加到我们的 WDS 上,并赋予它们完全加入权限
New-WdsClient -DeviceId $macAddress -DeviceName $name -BootImagePath "Boot\x64\Images\boot.wim" -JoinRights Full -Domain "sievolab.int" -JoinDomain $true -OU $serverOU -User "$($env:UserDomain)\$($env:username)" -PxePromptPolicy NoPrompt -WdsClientUnattend "WdsClientUnattend\labbuildslave.xml" -ReferralServer $wdsServer
这在手动安装时效果很好,但我最近开始实施两个无人值守文件,以便我们可以进行 100% 自动安装。问题是,如果我不在 ImageUnattend 文件中加入域,它根本就不会加入域。
有没有办法不在无人参与文件中指定域/OU,而只使用在预备阶段授予的权限?
答案1
在 4 specialize -> Microsoft-Windows-UnattendedJoin -> Identification 下使用 Windows 系统映像管理器创建应答文件时,将 UnsecureJoin 设置为 true。
我仍在明确指定域,但可以将其删除并留给 powershell 命令。我怀疑这是因为我没有设置 MachineObjectOu,但它仍然设置正确。