风一样的男孩 发表于 2012-10-9 10:21:29

如何开启Server 2008 r2的远程桌面功能?(3389)

2008R2开启远程3389时,必须要开启防火墙服务才能启用此功能,如果防火墙被关闭那么就要手动开启一下防火墙服务,启用完远程功能后可手动禁用防火墙服务.

计算机右键-->管理-->配置-->服务-->"Windows Firewall"
http://support.icafe8.com/wp-content/uploads/2012/09/2012-09-30_094107.png
http://support.icafe8.com/wp-content/uploads/2012/09/2012-09-30_094122.png
http://support.icafe8.com/wp-content/uploads/2012/09/2012-09-30_094133.png
开启完远程功能后建议修改一下服务器密码。
http://support.icafe8.com/wp-content/uploads/2012/09/2012-09-30_094147.png
开启完远程功能后建议修改一下服务器密码。
http://support.icafe8.com/wp-content/uploads/2012/09/2012-09-30_094157.png


附上自动开启3389的批处理:
@echo off
color 1c
echo 正在开启远程服务3389请稍等............................
sc config MpsSvc start= auto
sc start MpsSvc
reg add "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Terminal Server" /v "fDenyTSConnections" /t REG_DWORD /d 0 /f

sc stop MpsSvc
sc config MpsSvc start= disabled

exit
页: [1]
查看完整版本: 如何开启Server 2008 r2的远程桌面功能?(3389)