Windows Server 2008
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
Dell ExtPart: The “Magic” Utility for Legacy Partition Expansion | Lazy Admin Blog

If you’ve ever tried to expand a boot partition on an older Windows box (like Server 2003 or 2008) and found the “Extend Volume” option greyed out, you know the frustration. Enter the Dell ExtPart Utility.
This tiny 36KB tool allows for online volume expansion—meaning you can grow your NTFS partition without a reboot.
⚠️ The “Cloud” Warning
Before we dive in, a massive disclaimer: Do NOT use this in a Cloud/Virtual infrastructure (Azure, AWS, or even modern ESXi/Hyper-V). Modern hypervisors and cloud platforms use virtual disk drivers that can become corrupted if a legacy tool like ExtPart tries to manipulate the partition table directly. Use the native Disk Management or PowerShell tools instead.
How to use ExtPart.exe
- Download and Extract: It’s a self-extracting archive. Run it and extract
extpart.exeto a folder (e.g.,C:\extpart). - Open Command Prompt: Run CMD as an Administrator.
- Run the Command: Navigate to your folder and use the following syntax:
extpart [drive_letter]: [size_to_add_in_mb]
Example: To add 10GB (10240MB) to your C: drive, you would type:
extpart c: 10240
Key Specs:
- File Name: ExtPart.exe
- Size: 36KB
- Requirement: NTFS formatted basic disks.
- Reboot required? No.
Official Download Link:
- Link: Dell Basic Disk Expansion, v.1.0.4, A01
- File Name:
ExtPart.exe - Size: 36.73 KB
Installation Quick-Steps:
- Click Download File on the Dell page.
- Run the
ExtPart.exeyou just downloaded. It is a self-extractor. - By default, it extracts to
C:\dell\ExtPart. - Navigate to that folder to find the actual
extpart.exeutility you’ll use in the Command Prompt.