A Microsoft desktop and app virtualization service that runs on Azure. Previously known as Windows Virtual Desktop.
Yes the approach is correct and aligns with Microsoft's pattern for pooled, multi-session AVD. Patching the base (golden) image regularly and reimaging session hosts from that updated image is an established best practice for non-persistent/multi-session VDI, where hosts are treated as stateless and identical. [learn.microsoft.com], [learn.microsoft.com]
Is the base-image + reimage approach appropriate? Yes. For Windows 10/11 multi-session host pools, Microsoft's documented patterns are:
- Re-deploy/reimage the host pool with an updated base image each month, or
- Use Microsoft Configuration Manager to deploy updates.
Please note:
Intune update rings and Azure Update Manager do not support multi-session the same way they do for standard clients, so the image-based approach is generally the cleanest for keeping hosts consistent. Since you're using Nerdio, this is exactly what its automation is built for and you can schedule image patching, schedule a new image version, and schedule host reimaging on a cadence. [learn.microsoft.com]
Recommended Windows Update configuration - the base image is the single source of truth for updates, and live session hosts should not check Windows Update or allow user-triggered updates.
- On the base image
- Install the latest cumulative/security updates during the image build, then run cleanup, then sysprep/seal and capture. [learn.microsoft.com]
- Validate the image for stability before rolling it out, then reimage the host pool from the updated version. [learn.microsoft.com]
Microsoft's VDI optimization guidance states that in the patched-image model, the virtual desktops do not need to check Windows Update directly. Updating is handled against the image, not ad-hoc on each host. [learn.microsoft.com]
So, your instinct is right by disabling automatic updates on the live hosts. Use Group Policy (or Intune Settings Catalog for multi-session) to:
- Disable/Configure Automatic Updates > set to disabled so users can't trigger updates during business hours.
- Optionally hide the Windows Update settings page from end users (
Settings Page Visibilitypolicy) and prevent standard users from shutting down/restarting the host both common AVD hardening practices. - Group Policy is the recommended control mechanism, and it gives you centralized, consistent enforcement across all hosts rather than relying on per-host settings. [learn.microsoft.com]
- "Fully disabling" automatic updates is achieved through that GPO (Configure Automatic Updates > Disabled). This prevents user-initiated/automatic patching while you manage everything via the image. [learn.microsoft.com]
- Reason the AVD image docs recommend disabling automatic updates: it prevents unscheduled reboots and inconsistent patch levels across hosts that would disrupt user sessions and break image consistency. [learn.microsoft.com]
References