所以我使用此控制台命令使用特定应用程序打开文件,然后传入参数(用于使其更清晰的间距)
start C:\"Documents and Settings"\User\"My Documents"\Application_folder\Application.exe
"C:\Documents and Settings\user\My Documents\file_folder\file.type"
"Parameter1"
现在我希望能够在PowerShell ISE中调用相同的命令。我尝试了一些变化但没有工作。我并不熟悉PowerShell,所以有人能告诉我如何做到这一点吗?
答案 0 :(得分:0)
怎么样
& 'C:\Documents and Settings\User\My Documents\Application_folder\Application.exe' "C:\Documents and Settings\user\My Documents\file_folder\file.type" "Parameter1"