I'm trying to update my systems to allow copy and paste and a few other things. The settings get changed but don't seem to apply until I open the configuration in the web browser and close it. I figure the browser thing is 'saving' the settings. How can I go about getting my settings to save in my powershell script?
PowerShell Code |
---|
$folder = Get-Folder "LAB" | where {$_.Parent.Name -eq "DEVELOPMENT"}
$vms = $folder | Get-VM
ForEach ($vm in $vms){ if ($advancedsettings.Name -notcontains "suspend.disabled"){ if ($advancedsettings.Name -notcontains "isolation.tools.copy.disable"){ if ($advancedsettings.Name -notcontains "isolation.tools.paste.disable"){ }
|