An Azure service that is used to provision Windows and Linux virtual machines.
Hello John Parker,
Yes, the command Get-ComputerInfo seems to be wrong as it has OsHotFixes only related to HotPatches and that doesn't have any boolean value (True or False).
The best way to identify if the VM's hotpatch is disabled or not using should be Azure Portal Update Manager only.
For double verification, you could get the same details using Azure-CLI or Azure Console bash as well using command:
<Note: Replace ResourceGroup with your VM's resource group name and VM_Name with your virtual-machine's name in the command>
az vm show -g ResourceGroup -n VM_Name --query "osProfile.windowsConfiguration.patchSettings"
With the above command, you'll get a json output something like below:
{
"assessmentMode": "ImageDefault",
"automaticByPlatformSettings": {
"bypassPlatformSafetyChecksOnUserSchedule": false,
"rebootSetting": "IfRequired"
},
"enableHotpatching": true,
"patchMode": "AutomaticByPlatform"
}
If you see "enableHotpatching": true, that means Hotpatching is still enabled on your virtual machine.
Let me know if there are more queries relate to this.