mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-26 18:18:25 +00:00
6 lines
219 B
PowerShell
6 lines
219 B
PowerShell
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]
|
|
}
|