最佳答案
我试图在 cmd 命令行中运行一个 PowerShell 脚本,有人给了我一个例子,它起作用了:
powershell.exe -noexit "& 'c:\Data\ScheduledScripts\ShutdownVM.ps1'"
但问题是我的 PowerShell 脚本有输入参数,所以我试了试,但它不起作用:
powershell.exe -noexit "& 'D:\Work\SQLExecutor.ps1 -gettedServerName "MY-PC" ' "
错误是:
术语“ D: Work SQLExecutor.ps1-gettedServerName“ MY-PC”’不能识别为 cmdlet,function,
我怎样才能解决这个问题?