我正在尝试从运行对话框运行 powershell 脚本(将用作计划任务),但在传递参数时遇到了麻烦。
该脚本将接受两个参数,名为 title 和 msg。该脚本位于:D:\Tasks Scripts\Powershell\script.ps1
这就是我想要做的:
powershell.exe -noexit 'D:\Tasks Scripts\Powershell\script.ps1' -title 'Hello world' -msg 'This is a test message'
但它在读取参数时失败。
.\script.ps1 -title 'Hello world' -msg 'This is a test message'
在 powershell 上运行可以正常工作。