Azure Update Manager
An Azure service to centrally manages updates and compliance at scale.
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
I need to update patch mode of a linux vm remotely using PowerShell.
It is "Azure Managed - Safe Deployment ," at moment and need to update to 'Image Default"
An Azure service to centrally manages updates and compliance at scale.
Azuretech You can use below commands to set the patch orchestration of the Linux VM.
$VirtualMachine = Get-AzVM -ResourceGroupName "myResourceGroup" -Name "myVM"
Set-AzVMOperatingSystem -VM $VirtualMachine -Linux -PatchMode "ImageDefault"
Update-AzVM -VM $VirtualMachine -ResourceGroupName "myResourceGroup"