Hinsura
6/11/2018 - 8:39 AM

Kill Process w/ Port Num.

Kill the Process that Overtakes the IIS Express Port

Run command-line as an Administrator

STEP 1:
  netstat -ano | findstr :2723
    this will output a table. PID is the last column. 
    - let's say it's 7584

STEP 2: (find out the process)
  tasklist | find "7584"

STEP 3:
  taskkill /PID 7584 /F