Windows 10 远程工具不起作用,mmc、psexec 等

Windows 10 远程工具不起作用,mmc、psexec 等

我在网络上遇到了问题。
一些较新的 Windows 10 PC(戴尔的 Win10 映像)的行为与较旧的戴尔 PC 不同。
它们具有相同的服务包和修补程序,这是设置中的问题。

它们不接受远程管理任务,例如使用 MMC 对远程 \client 进行 PC 管理
,也不接受 Sysinternals 远程工具(如 psexec 等)。
我注意到这些机器不允许 RPC 连接。

尽管这些服务运行:

  • RPC 端点映射器
  • DCOM 服务器进程启动器
  • 远程过程调用 (RPC)

并且我确保 rpc 被允许

netsh advfirewall firewall add rule name="RPC endpoint mapper" dir=in action=allow protocol=TCP localport=135

有什么想法可以知道这可能是什么吗?

答案1

这确实是防火墙规则的问题。远程工具也存在问题,GLPI 在某些客户端上不起作用。

netsh advfirewall firewall add rule name="RPC endpoint mapper" dir=in action=allow protocol=TCP localport=135 profile=Domain,Private remoteip=172.16.1.0/16,LocalSubnet
netsh advfirewall firewall add rule name="File and Printer Sharing (NB-Datagram-In)" dir=in action=allow protocol=TCP localport=445 profile=Domain,Private remoteip=172.16.1.0/16,LocalSubnet
netsh advfirewall firewall set rule name="File and Printer Sharing (NB-Datagram-In)" new enable=yes profile=Domain,Private remoteip=172.16.1.0/16,LocalSubnet
netsh advfirewall firewall add rule name="ICMP Allow incoming V4 echo request" protocol=icmpv4:8,any dir=in action=allow

至少这些服务应该运行

Remote Procedure Call (RPC)
RPC Endpoint Mapper
DCOM Server Process Launcher 

其他人深入研究它,您可能会更改 ipnumbers 和 mask 以适合您的网站。

相关内容