‘sudo’ is not recognized as an internal or external command Exception

‘sudo’ is not recognized as an internal or external command Exception

Exception:

‘sudo’ is not recognized as an internal or external command, operable program or batch file.

Resolution:

sudo is used in linux commands. So, it is not supported in Windows or Mac OS.

For Windows OS, use the following commands to find the PID to kill the application running on a Port Number.

To find the PID:

Syntax:

netstat -ano | findstr :<PORT_NUMBER>

Example:

netstat -ano | findstr :3030

To kill the application:

Syntax:

taskkill /PID <PID> /F

Example:

taskkill /PID 2076 /F

/F is for quitting the application forcefully.

PID is Process Identifier.

Leave a Reply