PowerShell小技巧之启动远程桌面连接
PowerShell小技巧之启动远程桌面连接
发布时间:2016-12-28 来源:查字典编辑
摘要:以WindowsServer2012R2为例,其实非常简单。先启用远程连接:(gwmi-classwin32_terminalservice...

以Windows Server 2012 R2为例,其实非常简单。先启用远程连接:

(gwmi -class win32_terminalservicesetting -namespace "rootcimv2terminalservices").setallowtsconnections(1)

然后再启用几条防火墙规则即可,用PowerShell(需要管理员权限)更显其威武:

PS> Get-NetFirewallRule -Name RemoteDesktop* | select DisplayName,Direction,Enabled DisplayName Direction Enabled ----------- --------- ------- 远程桌面 - 用户模式(TCP-In) Inbound False 远程桌面 - 用户模式(UDP-In) Inbound False 远程桌面 - 远程监控(TCP-In) Inbound False PS> Get-NetFirewallRule -Name RemoteDesktop* | Set-NetFirewallRule -Enabled true

推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
相关阅读
网友关注
最新PowerShell学习
热门PowerShell学习
脚本专栏子分类