PowerShell ISE中允许用户决定做什么的方式(选择等价)

时间:2016-05-12 08:56:51

标签: choice powershell-ise

是否有相同的选择?我不想创建批处理文件,而是创建PowerShell ISE的脚本。我该怎么办?

1 个答案:

答案 0 :(得分:0)

Choice.exe不是本机PowerShell命令,而是交互式控制台应用程序。

尝试例如:

Start-Process -Wait "choice.exe"

或者使用类似Read-Host的内容:

$Choice = Read-Host -Prompt 'Input your choice'

另见:http://powershell.com/cs/blogs/tips/archive/2012/08/17/disabling-console-apps-in-powershell-ise.aspx