I've built a VM in Azure using Powershell commands and an ARM template. My template has this section:
"osProfile": {
"computerName": "[parameters('virtualMachines_abc_name')]",
"adminUsername": "testadm",
"windowsConfiguration": {
"provisionVMAgent": true,
"enableAutomaticUpdates": true
},
"secrets": [],
"allowExtensionOperations": true
},
You can see I've set "enableAutomaticUpates" to true. BUT when the machine is provisioned, it's not enabled. Anyone seen this issue before? Is there an equivalent Powershell command I can run on a specific VM? My VM is Windows Datacentre OS.
Thanks for any pointers in advance!