在Windows中如何启用/禁用远程协助连接

以管理员身份打开Windows命令提示符。

禁用远程协助:

netsh advfirewall firewall set rule group="Remote Assistance" new enable=no

启用远程协助:

netsh advfirewall firewall set rule group="Remote Assistance" new enable=yes

或者通过Windows注册表 禁用或者启用Windows远程协助

禁用:

reg add "HKLM\System\CurrentControlSet\Control\Remote Assistance" /v "fAllowFullControl" /t REG_DWORD /d "0" /f

启用:

reg add "HKLM\System\CurrentControlSet\Control\Remote Assistance" /v "fAllowFullControl" /t REG_DWORD /d "1" /f
日期:2020-07-07 20:57:05 来源:oir作者:oir