作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在命令提示符中,输入 PowerShell.exe
将在 cmd
内启动 PowerShell 交互式提示符。
如何退出并返回到 cmd.exe
? ctrl+c
、exit()
和 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/
我是一名优秀的程序员,十分优秀!