如何将此命令行代码转换为在PowerShell ISE 2.0中运行?

时间:2016-09-23 08:48:07

标签: powershell command-line automation powershell-v2.0 powershell-ise

所以我使用此控制台命令使用特定应用程序打开文件,然后传入参数(用于使其更清晰的间距)

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,所以有人能告诉我如何做到这一点吗?

1 个答案:

答案 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"