Horje
kill a process by looking up the port in windows Code Example
kill a process by looking up the port in windows
//Open command prompt and run the following commands

C:\Users\username>netstat -o -n -a | findstr 0.0:3000
   TCP    0.0.0.0:3000      0.0.0.0:0              LISTENING       3116

C:\Users\username>taskkill /F /PID 3116
//here 3116 is the process ID




Shell

Related
delete github credentials in windows Code Example delete github credentials in windows Code Example
snapd remove command Code Example snapd remove command Code Example
linux repository list Code Example linux repository list Code Example
how to update powershell version Code Example how to update powershell version Code Example
pip install bs4 pip install --trusted-host files.pythonhosted.org --trusted-host pypi.org --trusted-host pypi.python.org Code Example pip install bs4 pip install --trusted-host files.pythonhosted.org --trusted-host pypi.org --trusted-host pypi.python.org Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
10