When debugging .NET applications in Visual Studio, VS Code, or Rider, accidentally disconnecting instead of stopping a debug session leaves a zombie process running. Three methods to find and kill these processes on Windows are covered: using the process ID from compilation error output, finding the process by port number via netstat, and filtering running processes by DLL name using tasklist. All methods end with taskkill /PID <id> /F to terminate the offending process.

3m read timeFrom nodogmablog.bryanhogan.net
Post cover image