다음을 통해 공유


Outlook troubleshooting: find out if the Outlook process is running (PowerShell)

Sometimes in Windows 10, you are working on Outlook and you need to close it for some reason and when you try and launch it again nothing happens.

This is because there is already a process running in the background, the previous session you closed did not end properly or got stuck ending.

To find out if Outlook is running, you can use Task Manager but you can also use PowerShell.

To find out if Outlook is running, you can run the following command:

get-process outlook

https://everything-powershell.com/wp-content/uploads/2020/12/image-12.png

There you can see it is running, as mentioned, you can do the same with Task Manager by clicking the Details tab:

https://everything-powershell.com/wp-content/uploads/2020/12/image-13.png

If you want to terminate the process with PowerShell, you can head over to my other blog post on this below: