Created
June 27, 2023 16:03
-
-
Save XavM/eeff855a2c16ae101a17c10c2f53a97f to your computer and use it in GitHub Desktop.
Listen on port using powershell - Useful to test connectivity
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$Listener = [System.Net.Sockets.TcpListener]9999; | |
$Listener.Start(); | |
#wait, try connect from another PC etc. | |
$Listener.Stop(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment