Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                

Check If a Process Has Exited After Stop-Process in PowerShell



After killing the process using Stop-Process command in PowerShell, you can determine if the process is really terminated from the system with HasExited function.

For example, we will kill Notepad process and check if Notepad process still exists in the system?

$notepad = Get-Process notepad | Stop-Process
if($notepad.HasExited){"Process is terminated"}
else{"Process is still running"}

Updated on: 2020-01-22T12:30:25+05:30

932 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements