Open
Description
PowerShell.exe
supports various command-line flags. It would be beneficial to allow control over these arguments. Specifically, I want to run powershell.exe -NonInteractive
. This is especially useful when powershell.debugging.createTemporaryIntegratedConsole
is set to true so you get an isolated run with the exact environment you want.
I tried using the args
setting in launch.json
but that seems to pass parameters directly to my script, after powershell.exe
has already been loaded (with parameters I have no control over).