1. ホーム
  2. powershell

[解決済み] Powershellの終了を停止する

2022-03-11 01:39:21

質問

があることは知っていますが、その小さな -noexit PowerShell のスイッチです。

このスイッチを使わずにシェルの中にいる方法はありますか?

言い換えれば、私はシェルを開いたまま実行するスクリプトコマンド(複数可)が欲しいのです。

どのように解決するのですか?

このスクリプトは、ダブルクリックなどで引数なしで実行すると、終了しません。

param($Work)

# restart PowerShell with -noexit, the same script, and 1
if (!$Work) {
    powershell -noexit -file $MyInvocation.MyCommand.Path 1
    return
}

# now the script does something
# this script just outputs this:
'I am not exiting'