Think Twice
IT技術メモ | PowerShellのメモ
Created: 2021-08-10 / Updated: 2021-08-10

PowerShell.exeでPowerShellを実行する


目次


PowerShell.exeで実行する

Copy

PowerShell -NoLogo -NoProfile -ExecutionPolicy Unrestricted -File <PowerShellスクリプトのパス> <パラメータ1> <パラメータ2> ...

hello.ps1
Copy
Write-Host "hello! $($args[0])"
コマンドプロンプト
Copy
C:\temp>PowerShell -NoLogo -NoProfile -ExecutionPolicy Unrestricted -File .\hello.ps1
hello!

C:\temp>PowerShell -NoLogo -NoProfile -ExecutionPolicy Unrestricted -File .\hello.ps1 world
hello! world

参考

関連メモ

参照