What Is WSUS? Setup, Deprecation Status & Alternatives


Our Windows Server patching support team still runs WSUS in a large share of the environments it manages. This page documents what Windows Server Update Services is, how it works, what the September 2024 deprecation actually changed, and the alternatives Microsoft positions as replacements.
What WSUS is
Windows Server Update Services (WSUS) is a server role in Windows Server that distributes Microsoft product updates to computers on a network. Instead of every machine downloading updates directly from Microsoft Update, one WSUS server synchronizes the update catalog and content from Microsoft, and administrators decide which updates are approved, for which machines, and when. The official overview describes the role as a single management point for updates released through Microsoft Update.
The role is included in every supported Windows Server release: 2016, 2019, 2022, and 2025. It stores metadata in either the Windows Internal Database (WID) or a SQL Server instance, and serves update content over IIS.
How WSUS works
Four mechanisms make up a WSUS deployment:
- Synchronization. The WSUS server connects to Microsoft Update on a schedule and downloads update metadata for the products and classifications the administrator selected (for example, Windows Server 2022 + Security Updates). Update binaries are downloaded either at sync time or on first approval, depending on configuration.
- Approval workflow. Synchronized updates sit in the console unapproved until an administrator approves them for one or more computer groups. Nothing installs without an approval (or an automatic-approval rule). This deferral-and-selection control is the reason WSUS exists; the client servicing documentation lists it as the role's core function.
- Client targeting via GPO. Domain machines are pointed at the WSUS server through Group Policy:
Computer Configuration > Administrative Templates > Windows Components > Windows Update, the "Specify intranet Microsoft update service location" setting, plus client-side targeting to assign machines to WSUS computer groups. See Group Policy for how these settings are scoped and applied. - Downstream servers. A WSUS server can act as the update source for other WSUS servers. The server that syncs from Microsoft Update is the upstream server; downstream replicas in branch offices sync approvals and content from it instead of pulling across the WAN.
Deprecation status: the facts
Microsoft announced the deprecation of WSUS on September 20, 2024, in a Windows IT Pro Blog post. The announcement is narrower than most summaries of it. The documented facts:
| Fact | Detail |
|---|---|
| Deprecated, not removed | Deprecation in Microsoft terminology means active development has stopped; no new features will be added. The component still ships, is supported for production, and receives security and quality updates per the product lifecycle. The Windows Server removed and deprecated features list states this definition and lists WSUS with the note that all existing capabilities and content continue to be available. |
| Included in Windows Server 2025 | The WSUS role ships in Windows Server 2025 and is supported through that product's lifecycle, which runs to October 2034 for extended support. WSUS therefore remains a supported deployment option for years. |
| Configuration Manager unaffected | The announcement states the change does not affect WSUS integration with Microsoft Configuration Manager, which continues to use WSUS as its software update point. |
| Driver synchronization removed | Announced separately: WSUS driver synchronization was deprecated in June 2024 and importing driver updates into WSUS from Microsoft Update ended on April 18, 2025. Driver updates remain available through the Microsoft Update Catalog for manual import, and through cloud services. |
| WID also deprecated | The Windows Internal Database, which most WSUS deployments use as their backing store, is separately deprecated in Windows Server 2025 and will be removed in a future release. Microsoft recommends SQL Server for the roles that use it. |
What still works vs what stops
Working and supported: update synchronization for Windows and Microsoft product updates, the approval workflow, computer groups, GPO targeting, downstream servers, Configuration Manager integration, and security fixes for WSUS itself. Stopped or stopping: new feature development (permanently), driver update synchronization from Microsoft Update (ended April 2025), and eventually the WID backing store. There is no announced removal date for the WSUS role itself.
Setup summary
The short version of a new deployment on a domain-joined server:
- Install the role:
Install-WindowsFeature -Name UpdateServices -IncludeManagementTools, or add "Windows Server Update Services" in Server Manager. Choose WID or a SQL Server database during role services selection. - Run post-installation configuration, specifying the content directory:
wsusutil.exe postinstall CONTENT_DIR=D:WSUS. - Complete the configuration wizard: upstream source (Microsoft Update or another WSUS server), proxy, languages, products, and classifications. Keep product and classification selections minimal; every extra product inflates the database.
- Note the ports: WSUS listens on
8530(HTTP) and8531(HTTPS) by default. Configure SSL on 8531 for production; clients fall back to 8530 for content unless configured otherwise. - Point clients at the server via GPO: set "Specify intranet Microsoft update service location" to
http://wsusserver:8530(or the HTTPS equivalent), enable "Configure Automatic Updates", and set "Enable client-side targeting" with the intended group name. - Create computer groups in the console, run the first synchronization, and set approval rules or approve updates manually per group.
Client OS support depends on the server OS running the role; the servicing matrix is in the deployment documentation. Which server OS to run the role on is a lifecycle decision — see Windows Server versions for the support dates.
Maintenance pain points
WSUS deployments degrade without recurring maintenance. The recurring failure modes:
- WID/database growth. The SUSDB database accumulates metadata for every synchronized update, including superseded and declined ones. Left alone for a year or two, the database reaches a size where console operations time out. WID gives no built-in visibility into this; it must be connected to with SQL Server Management Studio over the named pipe to index and reindex.
- Server Cleanup Wizard. The built-in cleanup removes superseded updates, expired updates, and obsolete computers. On a neglected server the wizard itself times out and has to be run category by category, or replaced with the equivalent PowerShell (
Invoke-WsusServerCleanup) on a schedule. Decline superseded updates before running content cleanup, or the disk space does not come back. - IIS application pool memory. The WsusPool application pool ships with a private memory limit (default around 1.8 GB) that a busy server exceeds, causing the pool to recycle mid-scan and clients to report error 0x80244022. The standard fix is raising or removing the private memory limit on WsusPool and increasing the queue length.
- Client scan failures. Machines that stop reporting usually trace to a stale
SusClientId(cloned VMs), a full software distribution folder, or the pool recycling above — not to WSUS approvals.
Alternatives
Microsoft's replacement direction is cloud-native update management. The current product set:
| Alternative | What it is | Fit |
|---|---|---|
| Windows Autopatch | A service built on Intune and Windows Update that automates approval, gradual rollout, and reporting for Windows quality, feature, and driver updates. Included with Business Premium, A3+, E3+, and F3 licensing. | Intune-managed Windows 10/11 endpoints where the organization wants Microsoft to run the update cadence. |
| Azure Update Manager | An Azure service that assesses and deploys OS updates across Windows and Linux machines in Azure, on-premises (via Azure Arc), and other clouds. This is Microsoft's stated path for server patching. | Server estates, including on-premises servers connected through Azure Arc. The closest functional successor to WSUS for servers. |
| Intune update ring policies | Intune policies that control Windows Update deferral periods, deadlines, active hours, and restart behavior per device group — the ring model (test, pilot, production) without on-premises infrastructure. | Cloud-managed clients where the organization wants ring control but not the full Autopatch service. |
| Third-party RMM patching | RMM platforms (NinjaOne, Atera, Datto RMM, N-able, and others) include patch management engines that approve and deploy Windows updates plus third-party application patches, which none of the Microsoft options above cover. | MSP-managed fleets and mixed environments where third-party application patching is required in the same tool. |
Two practical notes. Autopatch and update rings manage Windows clients, not Windows Server; server patching goes to Azure Update Manager or stays on WSUS. And air-gapped or bandwidth-constrained networks remain the case Microsoft's cloud options do not cover, which is why WSUS persists in those environments.
Managed patching
Medha Cloud operates patching as part of Windows Server support: WSUS maintenance (database reindexing, cleanup automation, pool tuning), migrations from WSUS to Azure Update Manager or Intune, and ongoing approval and rollout management under a monthly plan. An engineer is available on live chat 24/7.
Advanced security and device management for businesses that need more than the basics.
Business Premium Plans & PricingTopics

Sreenivasa Reddy G
Founder & CEO • 15+ years
Sreenivasa Reddy is the Founder and CEO of Medha Cloud, recognized as "Startup of the Year 2024" by The CEO Magazine. With over 15 years of experience in cloud infrastructure and IT services, he leads the company's vision to deliver enterprise-grade cloud solutions to businesses worldwide.
More in Managed IT Services
View all
Tomcat Versions: Releases & End of Life Dates
8 min read

Remote DBA Services: What They Cover & Cost Structure
7 min read

Red Hat Support: Portal, Contact Numbers & Options
8 min read

SSH Command: Syntax, Options & Examples
9 min read

chmod: Permissions, Numeric Modes & Examples
9 min read

What Is Group Policy? GPOs, Settings & Processing Order
9 min read