yakiimonster
2/5/2019 - 11:03 AM

外部powershell実行

powershell から powershell を実行

# powershell から powershell を実行
Start-Process $Powershell "xxxx.ps1" -Wait -NoNewWindow
# bat から powershell を実行
powershell -NoProfile -ExecutionPolicy Unrestricted .\xxxx.ps1