mitmproxy/release/installbuilder/run.ps1

6 lines
219 B
PowerShell
Raw Normal View History

2021-01-04 19:06:55 +00:00
if (Get-Command wt -ErrorAction SilentlyContinue) {
Start-Process wt -ArgumentList "powershell.exe","-NoExit","-Command",$args[0]
} else {
Start-Process powershell -ArgumentList "-NoExit","-Command",$args[0]
}