Grrr...ここにNoobの質問があります。基本的にこれを行うブロックを作成したいと思います。
Write-Host "Press X to cancel or any other key to continue"
$continue = Read-Host
If ($continue = "X")
{exit}
else
{Write-Host "Hello world"}
別のキーを押しても終了し続けます...何が間違っているのですか?ありがとう!!!