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.
CodePudding user response:
get-process devenv | kill
Should do the trick