Powershell - 从批处理CMD启动不同驱动器上的进程


Answers:


3

您需要引用可执行文件的路径:

powershell -Command "& { Start-Process -FilePath 'E:\Trunk Monkey\Utilities\SkypePortable\SkypePortable.exe' }"

优秀。虽然这是一个KB类型的问题,但您提供了我的示例问题的答案。谢谢!
semtex41 2014年

0

解决方案:使用以下语法,仅使用单引号(双引号不起作用) -

powershell start-process -FilePath 'E:\Trunk Monkey\Utilities\SkypePortable\SkypePortable.exe'

细节:我对其他参数没有运气,包括......

powershell -Command "& {}

如下所列:http//technet.microsoft.com/en-us/library/hh847736.aspx

希望这会有所帮助。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.