gpt4 book ai didi

powershell - 阻止 Powershell 退出

转载 作者:行者123 更新时间:2023-12-03 13:41:30 36 4
gpt4 key购买 nike

我知道有那个小-noexit切换到 PowerShell。

有没有不使用那个开关就留在 shell 中?

换句话说,我想要一个脚本命令,它执行然后让 shell 保持打开状态。

最佳答案

如果您在没有参数的情况下运行该脚本,则该脚本将不会退出,例如通过双击它:

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'

关于powershell - 阻止 Powershell 退出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9362722/

36 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com