我有一个批处理文件 input.bat,用于启动可执行文件并传递用户输入,如下所示:
foo.exe < userInput.txt
我想以高优先级模式运行 foo.exe,我可以通过调用以下命令成功完成:
START "WindowName" /high "foo.exe"
但是,如果我尝试调用批处理文件,.exe 不会以高优先级运行,例如
START "WindowName" /high "input.bat"
有没有办法在使用 START 设置优先级时将用户输入文本传递给 .exe?
我已经在 Microsoft Windows 10 Enterprise Version 10.0.19044 Build 19044 中的 Powershell 和命令提示符(运行 cmd)中对此进行了测试