Terminal:
Step 1: Tasklist/SVC lists all processes, system services, and their corresponding PID values!
The service name of the terminal is TermService.
Step 2: run the netstat-ano command to list the PID values of all ports!
Find the port corresponding to the PID Value
1. General methods
Regedit/e c: 3389.reg "HKEY_LOCAL_MACHINESYSTEMCurrentControlSetControlTerminal ServerWinStationsRDP-Tcp"
Type c: 3389.reg | find "PortNumber"
Del c: 3389.reg
2. xp and 2003
Reg query "HKEY_LOCAL_MACHINESYSTEMCurrentControlSetControlTerminal ServerWinStationsRDP-Tcp"
3. Script
Echo Dim ReadComputerName> c: 3389.vbs
Echo Set ReadComputerName = WScript. CreateObject (^ "WScript. Shell ^")> c: 3389.vbs
Echo Dim TSName, TSRegPath> c: 3389.vbs
Echo TSRegPath = ^ "HKLMSystemCurrentControlSetControlTerminal ServerWinStationsRDP-TcpPortNumber ^"> c: 3389.vbs
Echo TSName = ReadComputerName. RegRead (TSRegPath)> c: 3389.vbs
Echo WScript. Echo (^ "Termservice Port: ^" ^ & TSName)> c: 3389.vbs
Cscript 3389.vbs
C:> tasklist/svc | find "TermService"
Svchost.exe 1300 TermService
C:> netstat-ano | find "1300 ″
TCP 0.0.0.0: 61321 0.0.0.0: 0 LISTENING 1300
TCP 210.72.225.74: 61321 123.114.166.67: 1697 ESTABLISHED 1300