如何将搜索域添加到 windows 8.1 autounattend.xml

How to add the search domain to a windows 8.1 autounattend.xml

我有一个 autunattend.xml 文件用于 windows 8.1 加壳安装。这实际上可以正常工作,但它不会添加到我的搜索域中(我希望这是正确的术语)。

所以我最后有一个虚拟机,当我尝试连接到网络中的另一台机器时 - 我们称它为 foo - 这不起作用:

nslookp foo

这意味着,它找不到机器。 将域添加到它确实有效

nslookup foo.company.local

如何将域 company.local 添加到 autounattend.xml 以便第一个调用正常工作?

您可以尝试在您的 autounattend.xml 文件中添加以下命令

<SynchronousCommand wcm:action="add">
     <Description>Set DNS Search Order</Description>
     <Order>99</Order>
     <CommandLine>cmd.exe /c wmic nicconfig call SetDNSSuffixSearchOrder (company.local,<add other if necessary separated by ,)</CommandLine>
</SynchronousCommand>

只需确保订单(此处为 99)不与脚本中的现有命令冲突