Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

how to deallocate a port

netstat -ano | findstr :<PORT>
taskkill /PID <PID> /F
Exemple : 
C:WINDOWSSystem32>netstat -ano | findstr :8090
	TCP 0.0.0.0:8090		0.0.0.0:0		LISTENING		11260
	TCP [::]:8090			[::]:0			LISTENING		11260
C:WINDOWSSystem32>taskkill /PID 11260 /F
Opération réussie : le processus avec PID 11260 a été terminé.
Comment

PREVIOUS NEXT
Code Example
Shell :: All matches were filtered out by modular filtering for argument 
Shell :: Zathura not displaying any documents 
Shell :: zathura show black screen 
Shell :: ubuntu 20.04 install google cloud sdk 
Shell :: git ammend commit 
Shell :: error timed out while waiting for handshake digitalocean 
Shell :: upgrade scipy version 
Shell :: alpine add user 
Shell :: awk skip first line 
Shell :: tar file 
Shell :: apache .htaccess Option ubuntu 
Shell :: firebase deploy only hosting command 
Shell :: bash check diff starting at specific line 
Shell :: centos install wget 
Shell :: local-gen install 
Shell :: linux replace spaces with underscore from all files in directory 
Shell :: rename username ubuntu 20.04 
Shell :: How to create folder and cd into it with one command 
Shell :: open gui of git repo 
Shell :: push a local branch 
Shell :: hapus folder di linux 
Shell :: start apache server kali 
Shell :: bash print line if column value is in column of another file 
Shell :: grep process id 
Shell :: how to check if virtualization in enable on linux 
Shell :: git submodule update authentication 
Shell :: k8s create namespace 
Shell :: how to extract rar file in ubuntu 
Shell :: xcode print long string 
Shell :: v-restore-user command not found 
ADD CONTENT
Topic
Content
Source link
Name
4+1 =