我在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