Fix ERROR_NOT_SUPPORTED_ON_SBS (0X000004E6) on Windows Server
This error pops up when you try to use a feature or app on Windows Small Business Server (SBS) that isn't supported there. I'll walk you through the three most common causes and their fixes.
Cause #1: Exchange Server or SQL Server on SBS
I know this error is infuriating. You're setting up Exchange Server or SQL Server on a Windows Small Business Server (SBS) 2011 or 2008, and boom—you get 0X000004E6. The root cause? Microsoft never intended SBS to host full-blown Exchange or SQL instances beyond the built-in ones. SBS is a lightweight all-in-one box for small businesses. It lacks the system components these apps need.
This tripped me up the first time too. A client tried installing Exchange 2010 on SBS 2011 Standard. The error appeared right after prerequisites check. Here's what's really happening: SBS uses a stripped-down version of the Windows Server operating system. Certain APIs and services required by standalone Exchange or SQL are missing or blocked.
How to fix it
- Uninstall the unsupported app immediately. Go to Control Panel > Programs and Features, and remove the Exchange or SQL installation you attempted.
- Use the built-in SBS versions. SBS 2011 includes Exchange Server 2010 and SQL Server 2008 R2 Express. These are the supported configurations. Don't try to install a different version—it won't work.
- Check the product compatibility. If you absolutely need a newer Exchange or SQL version, you'll need to migrate off SBS to a standard Windows Server edition. That's a bigger project, but it's the only proper path.
One real-world scenario: a small accounting firm tried to install SQL Server 2012 Standard on SBS 2011. They got 0X000004E6 as soon as the installer checked the OS. We had to move their database to a separate Windows Server 2012 R2 machine. Painful, but necessary.
Cause #2: DFS Replication or DFS Namespaces on SBS
Another common trigger: you're trying to set up Distributed File System (DFS) Replication or DFS Namespaces on SBS. This error pops up because SBS 2008 and 2011 don't fully support DFS roles. The SBS design assumes you're running a single server—DFS is for multi-server environments.
I've seen this happen when someone tries to replicate folders between an SBS box and a secondary server. The DFS Management console throws 0X000004E6 immediately. It's not a driver or permission problem—it's a feature blacklist.
How to fix it
- Don't install the DFS role on SBS. If you already did, uninstall it via Server Manager. The role won't function correctly anyway.
- Use Windows Server Backup or Robocopy for file replication. For example, schedule a Robocopy script:
This mirrors the folder structure daily without hitting the error.robocopy \\source\\shared \\target\\backup /MIR /R:3 /W:10 - Consider upgrading. If you need DFS badly, migrate to Windows Server 2012 R2 or later. SBS is dead anyway—Microsoft ended mainstream support in 2014.
I helped a law firm that got this error trying to sync their "Clients" folder across two locations. We switched to a scheduled Robocopy job with logging, and it worked reliably for years. Not as elegant as DFS, but stable.
Cause #3: Windows Server Update Services (WSUS) on SBS
Third most common: you're configuring WSUS on SBS and hit 0X000004E6. This one's sneaky because WSUS isn't an explicitly blocked app—but the error can appear when you try to use the WSUS console with a remote SQL instance or when you exceed the built-in database size limits.
On SBS 2011, WSUS uses Windows Internal Database (WID) by default, which has a 10 GB limit. If updates pile up and the database swells, you get this error when trying to sync or approve updates. The console just refuses to open.
How to fix it
- Clean up the WSUS database. Open PowerShell as admin and run:
This removes expired updates, declined updates, and obsolete computer records.Get-WsusServer | Invoke-WsusServerCleanup - Decline superseded updates. In the WSUS console, go to All Updates, filter by "Superseded" and "Any except Declined," select all, right-click, Decline. This shrinks the database fast.
- Move to a dedicated SQL Server if cleanup doesn't help. You can attach the WSUS database to a full SQL Server instance, but that's advanced. Most shops just clean up regularly.
At my last help desk, we had a client with 500 machines all downloading updates from the SBS server. The database grew to 12 GB, and the error appeared every morning. After cleaning up superseded updates, it dropped to 4 GB and the error vanished.
Quick-reference summary
| Cause | Error trigger | Fix |
|---|---|---|
| Exchange/SQL installation | Installing unsupported versions | Use built-in SBS versions |
| DFS Replication/Namspaces | Enabling DFS roles | Use Robocopy or migrate |
| WSUS database bloat | Sync or console open fails | Clean up database |
Was this solution helpful?