Powershell as a Visual Studio External Tool

It’s handy to be able to open Powershell at the current solution directory, e.g. for invoking scripts or git commands etc.
Click the Tools menu  -> External Tools -> Add
Title: Powershell, or whatever you want
Command: your PS directory, e.g C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe
Arguments: -ExecutionPolicy RemoteSigned -NoExit -Command “Set-Location ‘$(SolutionDir)’ | Clear-Host"
Initial directory: $(SolutionDir)