Created
September 2, 2021 07:51
-
-
Save javifm86/b102139a3b7f57c631454a466b8da5af to your computer and use it in GitHub Desktop.
Kill port in windows
This file contains hidden or 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
for /f "tokens=5" %%a in ('netstat -aon ^| find ":4500" ^| find "LISTENING"') do taskkill /f /pid %%a |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment