标签: powershell invoke powercli
$scriptText = {Very Large script with more than 2869 Characters} Invoke-VMScript -ScriptType Powershell -VM $vmname -GuestUser $guser -GuestPassword $gpassword -ScriptText $ScriptText
当我尝试运行包含超过2869个字符的脚本时,脚本不会执行。 它少于2870个字符时执行正常。
有没有办法执行大脚本?