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

How can I convert this command line code to run in PowerShell ISE 2.0?

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

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 中调用相同的命令。我尝试了一些变体,但 none 有效。我对 PowerShell 不是很熟悉,所以有人可以教我如何做吗?

怎么样

& 'C:\Documents and Settings\User\My Documents\Application_folder\Application.exe' "C:\Documents and Settings\user\My Documents\file_folder\file.type" "Parameter1"