通過CMD查詢遠端連線埠及開啟遠端連線埠的方法

2021-10-10 17:52:47 字數 1024 閱讀 2646

1.tasklist /svc | find "ter"(查詢遠端連線的pid)

2.netstat -ano | find "1352"(通過pid值查詢開放的埠)

win08,三條命令即可:

wmic /namespace:\\root\cimv2\terminalservices path win32_terminalservicesetting where (__class != "") call setallowtsconnections 1 

wmic /namespace:\\root\cimv2\terminalservices path win32_tsgeneralsetting where (terminalname ='rdp-tcp') call setuserauthenticationrequired 1

reg add "hklm\system\currentcontrolset\control\terminal server" /v fsinglesessionperuser /t reg_dword /d 0 /f

win2012通用;win7前兩條即可。許可權需要run as administrator。

win03 winxp 一條命令即可:

wmic path win32_terminalservicesetting where (__class != "") call setallowtsconnections 1
以上前提條件是確保windows management instrumentation(winmgmt)服務已正常啟動,許可權的話貌似(沒有詳細測試)需要administrator及以上

當然winxp win7對於多使用者登入以上命令是無法解決的

修改遠端連線的預設埠

預設埠是3389 十進位制 1 在執行裡面輸入 regedit 進入登錄檔,然後找到hkey local machine system currentcontrolset control terminal server wds rdpwd tds tcp 這一項,如圖1 2 找到 portnumbe...

修改遠端桌面連線埠

遠端桌面終端服務預設埠為 3389 為防止他人進行惡意連線,就需要對預設埠進行更改。對此可開啟登錄檔編輯器,依次展開 hkey local machine system currentcontrolset control terminal server wds rdpwd tds tcp 分支,其下...

Windows10 更改遠端連線埠

適用於 windows 10 windows 8.1 windows 8 windows server 2019 windows server 2016 windows server 2012 r2 windows server 2008 r2 通過遠端桌面客戶端連線到計算機 windows 客戶端...