1

我在powershell中使用以下脚本遇到了上述问题。我似乎找不到问题。该脚本需要 2 个参数,我已经在命令行上提供了它们,但它仍然会引发错误?

命令:

PS C:\> powershell.exe -ExecutionPolicy Bypass invoke-command installboot.ps1 -computername 192.168.162.1 -argumentlist MyServer\MyNewService, option2

脚本:

param(
    [Parameter(Mandatory=$true)]
    [string] $IISName, 
    [Parameter(Mandatory=$true)]
    [string] $installmode
)

write-host "IISName: " $IISName
write-host "Install Mode: " $installmode
4

1 回答 1

3

尝试使用-Command参数,例如:

powershell.exe -ExecutionPolicy Bypass -Command {invoke-command -file installboot.ps1 -computername 192.168.162.1 -argumentlist MyServer\MyNewService,option2}
于 2013-10-22T17:27:23.223 回答