为 WMI 设置固定端口
WMI 作为共享服务主机的一部分运行,默认情况下通过 DCOM 分配端口。 但是,你可以将 WMI 服务设置为在单独的主机中作为唯一进程运行并指定固定端口。
以下过程是允许 WMI 具有固定端口的自动设置。 该过程使用 winmgmt 命令行工具。
为 WMI 设置固定端口
- 在命令提示符下,键入 winmgmt -standalonehost
- 通过键入命令 net stop "Windows Management Instrumentation" 或使用简称 net stop winmgmt 停止 WMI 服务
- 通过键入 net start "Windows Management Instrumentation" 或 net start winmgmt 在新的服务主机中再次重启 WMI 服务
- 通过键入 netsh firewall add portopening TCP 24158 WMIFixedPort 为 WMI 服务建立一个新的端口号
若要撤消对 WMI 所做的任何更改,请键入 winmgmt /sharedhost,然后再次停止并启动 winmgmt 服务。