Is there a way to use Stop-Process in PowerShell to close Visual Studio 2022?
Task Manager shows the following for an instance of Visual Studio:
It isn’t clear which process I should call Stop-Process on to gracefully exit the program.
>Solution :
get-process devenv | kill
Should do the trick
