PowerShell スクリプトを実行するにはどうすればよいですか?
スクリプトを実行すると、次のエラーが表示されます。
File cannot be loaded because the execution of scripts is disabled on this system
スクリプトを実行するのを手伝ってもらえますか?
set-executionpolicy unrestricted
#Set-ExecutionPolicy RemoteSigned
$target=[IO.File]::ReadAllText(".\usermenuTest1.4d")
$output=[IO.File]::ReadAllText(".\usermenuTest2.4d")
($output -replace $target) | Set-Content "usermenuTest2.4d.new"
Start-Sleep -s 10