好,我丢了。 PowerShell让我很烦。我希望显示一个暂停对话框,但不会。

PS W:\>>> $host.UI.RawUI.ReadKey("NoEcho,IncludeKeyDown")
Exception calling "ReadKey" with "1" argument(s): "The method or operation is not implemented."
At line:1 char:23
+ $host.UI.RawUI.ReadKey <<<< ("NoEcho")
    + CategoryInfo          : NotSpecified: (:) [], MethodInvocationException
    + FullyQualifiedErrorId : DotNetMethodException

最佳答案

cmd /c pause | out-null

(这不是PowerShell的方式,但是它要优雅得多。)

保存树木。使用单线。

09-04 04:52