windowsxp sp3 从命令行禁用界面

windowsxp sp3 从命令行禁用界面

我需要批量禁用 Windows 机器上的接口(超​​过 100 台机器)。我尝试使用:

netsh interface set "VirtualBox Host-Only Network" disable

但它不起作用。(我发现了一篇文章,描述它在 win 2003 服务器上运行)。我可以使用 psexec 远程运行命令。

你有什么提示吗?

提前致谢!

答案1

您可能需要另一个“interface”关键字和“disabled”而不是“disable”:

netsh interface set interface "VirtualBox Host-Only Network" disabled

答案2

在 Windows XP 上,使用 netsh 禁用 LAN 接口不起作用。帮助显示以下内容:

admin   - whether the interface should be enabled (non-LAN only)
connect - whtether to connect the interface (non-LAN only)
newname - new name for the interface (LAN only)

相关内容