是否有相同的选择?我不想创建批处理文件,而是创建PowerShell ISE的脚本。我该怎么办?
答案 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