gpt4 book ai didi

powershell - 如何在 CMD 中退出 PowerShell.exe

转载 作者:行者123 更新时间:2023-12-02 23:02:30 27 4
gpt4 key购买 nike

在命令提示符中,输入 PowerShell.exe 将在 cmd 内启动 PowerShell 交互式提示符。

如何退出并返回到 cmd.exectrl+cexit()break 按钮都不起作用。

最佳答案

Ctrl-Break 有效。

exit() 可能有效,但使用括号调用函数不是 PowerShell 语法,因此它尝试使用 () 作为函数参数,但 ( ) 不是 PowerShell 中的任何内容,因此它会生成错误消息。 exit(1) 有效,因为 (1) 本身就是一个有效的表达式,其计算结果为 1,因此这与 exit 相同1,该命令在cmd环境中设置%ERRORLEVEL%返回值。

它在help about_Language_Keywords中进行了描述:

Exit

Causes Windows PowerShell to exit a script or a Windows PowerShell instance.

When you run 'powershell.exe -File ', you can only set the %ERRORLEVEL% variable to a value other than zero by using the exit statement.

关于powershell - 如何在 CMD 中退出 PowerShell.exe,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42774454/

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