PowerShell 按任意键继续

Posted Xiao-C

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PowerShell 按任意键继续相关的知识,希望对你有一定的参考价值。

1 function Pause(){
2 [System.Console]::Write(‘按任意键继续...‘)
3 [void][System.Console]::ReadKey(1)
4 }
5 pause

 

以上是关于PowerShell 按任意键继续的主要内容,如果未能解决你的问题,请参考以下文章

powershell 如何在PowerShell中编写“按任意键继续”

如何从 grub2 中删除“按任意键继续”消息

删除 按任意键继续

(按任意键继续)在 Scala 中

sh Bash - 如何使“按任意键继续”

在Java中,怎么让程序暂停执行,然后按任意键继续执行?