Checking listening ports tells you whether software is actually waiting for connections on your Windows VPS. Use this when a game server, web server, RCON tool, or database is not reachable.

If the application is not listening locally, opening a firewall rule will not make it reachable. Start the game server or application first, then check the port.

  1. Connect to the Windows VPS with Remote Desktop.
  2. Open PowerShell as Administrator.
  3. List listening TCP ports:
    Get-NetTCPConnection -State Listen
  4. Filter for a specific TCP port:
    Get-NetTCPConnection -LocalPort 7777
  5. Show the process that owns a listening TCP port:
    $connection = Get-NetTCPConnection -LocalPort 7777 -State Listen
    Get-Process -Id $connection.OwningProcess

    Windows VPS PowerShell showing listening ports and owning process

  6. For UDP game ports, check UDP endpoints:
    Get-NetUDPEndpoint -LocalPort 7777

 

If the port is listening but unreachable

  • Check Windows Firewall allows the port and protocol.
  • Check any VPS panel firewall rules.
  • Confirm the game uses the port you are testing.
  • For UDP game ports, test through the game client where possible.
  • 0 Kasutajad peavad seda kasulikuks
Kas see vastus oli kasulik?

Seotud artiklid

Installing SteamCMD on your Windows VPS

SteamCMD is Valve's command-line tool for downloading and updating dedicated server files...

How to change your Windows VPS Administrator password

You can change the main Windows VPS login password from the VPS control panel. This is useful if...

How to open Windows Firewall ports on your VPS

Windows Firewall controls which inbound connections are allowed into your Windows VPS. If you...

How to open and use PowerShell on a Windows VPS

PowerShell is the main command-line tool for managing a Windows VPS. You can use it to install...

How to connect to a Windows VPS with Remote Desktop

Remote Desktop is the normal way to manage a Windows VPS. It opens a desktop session so you can...