Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
& powershell .\other.ps1との間で動作はどのように異なります& .\other.ps1か?
& powershell .\other.ps1
& .\other.ps1
編集:特に、エラーが発生した場合、それらはどのように異なりますother.ps1か?
other.ps1
前者の場合は別のPowerShellプロセスを取得し、スクリプトは現在のセッションで定義された変数を読み取ることができません。
PS> $foo = 'bar' PS> 'Write-Host $foo'|Set-Content x.ps1 PS> & powershell .\x.ps1 PS> & .\x.ps1 bar