how to close serveice on perticular port number code example
Example: how to close serveice on perticular port number
# It gives PID of the service
netstat -ano | findstr :<Port>
# Kill the process using PID
taskkill /PID <PID> /F
# It gives PID of the service
netstat -ano | findstr :<Port>
# Kill the process using PID
taskkill /PID <PID> /F