Server Manager
Fixing Server Manager Error 0x800706BE: The Missing MUM/CAT Mystery | Lazy Admin Blog

If your Server Manager is blank, showing a yellow bang, or refusing to refresh with a “Remote Procedure Call Failed” error, you aren’t looking at a network issue—you’re looking at a corrupted Windows Update store.
When Windows cannot validate the files in the C:\Windows\Servicing\Packages directory, the Server Manager discovery process crashes. Here is how to perform manual surgery on the CBS store to fix it.
The Symptom
- Error Code: 0x800706BE
- Event ID: 1601 (Microsoft-Windows-ServerManager/Operational)
- Message: Could not discover the state of the system.
Step 1: The Diagnostics (CheckSUR)
First, we need to know exactly which files are broken.
- Download and run the System Update Readiness Tool (CheckSUR) (KB947821) or, on newer versions of Windows Server, run:
DISM.exe /Online /Cleanup-image /Scanhealth - Once finished, open the log file:
%Systemroot%\Logs\CBS\Checksur.log - Look for lines starting with
(f) CBS MUM Corruptor(f) CBS MUM Missing. These are your “targets.”
Step 2: Gain Control of the Packages Folder
By default, even an Administrator cannot write to the Servicing folder. You must take ownership:
DOS
takeown /F C:\Windows\Servicing\Packages /D y /Ricacls C:\Windows\Servicing\Packages /save %temp%\AclFile /Ticacls C:\Windows\Servicing\Packages /grant %username%:F /T
Step 3: Extract and Replace the “Grafts”
Now you need to “borrow” healthy files from the original Update files to replace your corrupt ones.
- Download the KB: Download the
.msufile for the KB number listed as corrupt in your log. - Expand the MSU:
expand -F:* Windows6.1-KB978601-x64.msu C:\Repair - Expand the CAB: Inside that folder, find the
.cabfile and expand it too:expand -F:* Windows6.1-KB978601-x64.cab C:\Repair\CAB - The Extraction: Inside the
CABfolder, findupdate.mumandupdate.cat.
Step 4: The Rename and Replace
This is where precision matters. You must rename those generic files to match the exact long string found in your Checksur.log.
- Example Rename:
- From:
update.mum - To:
Package_for_KB978601~31bf3856ad364e35~amd64~~6.0.1.0.mum
- From:
- Move: Copy these renamed files into
C:\Windows\Servicing\Packages.
Step 5: Verify the Fix
Close and reopen Server Manager. It should now trigger a fresh discovery without the RPC error. If it still fails, check the Checksur.log again—you likely have more missing packages to replace!
Lazy Admin Tip 💡
If you have another server running the exact same OS and patch level, you can often just copy the healthy .mum and .cat files from the “Good” server’s C:\Windows\Servicing\Packages folder to the “Bad” one. It’s much faster than manually expanding CAB files!
#WindowsServer #SysAdmin #ServerManager #Troubleshooting #ITOps #Microsoft #TechSupport #LazyAdmin #WindowsUpdate
Installing and Configuring MPIO on Windows Server 2008

Multipath I/O (MPIO) is essential for providing redundancy and load balancing for storage connections. Whether you are using Fibre Channel or iSCSI, here is the definitive guide to getting MPIO running on Windows Server 2008.
🛠️ Option 1: Install MPIO via Server Manager (GUI)
- Open Server Manager: Click Start > Administrative Tools > Server Manager.
- Add Features: In the Features summary area, click Add Features.
- Select MPIO: On the Select Features page, check the box for Multipath I/O and click Next.
- Confirm: Click Install.
- Finish: Once the progress bar completes, click Close.
💻 Option 2: Install MPIO via Command Line (CLI)
If you are working on a Server Core installation or just prefer the speed of the CLI, use ServerManagerCmd.exe.
- Open Command Prompt as Administrator.
- Install the feature:DOS
ServerManagerCmd.exe -install Multipath-IO - Verify installation:DOS
ServerManagerCmd.exe -queryEnsure “Multipath I/O” appears in the list of installed packages.
🔗 Claiming iSCSI Devices for MPIO
After installation, Windows doesn’t automatically “claim” iSCSI devices for multipathing. You must enable this manually.
- Open the MPIO Control Panel (found in Administrative Tools).
- Go to the Discover Multi-Paths tab.
- Check the box Add support for iSCSI devices and click Add.
- Reboot: You will be prompted to restart the computer. Click Yes.
- Verify: After the reboot, check the MPIO Devices tab. You should see hardware ID
MSFT2005iSCSIBusType_0x9, indicating the Microsoft DSM has successfully claimed the iSCSI bus.
🗑️ How to Remove MPIO
If you need to decommission MPIO, follow these steps:
- Via GUI: In Server Manager, click Remove Features, uncheck Multipath I/O, and follow the prompts.
- Via CLI:DOS
ServerManagerCmd.exe -remove Multipath-IO
![IC347745[1]](https://i0.wp.com/lazyadminblog.com/wp-content/uploads/2015/05/ic3477451.gif?resize=300%2C190&ssl=1)
#WindowsServer #MPIO #StorageAdmin #SysAdmin #ITPro #DataCenter #iSCSI #Networking #LazyAdmin #LegacyIT