ProblemYou want to convert a basic disk to a dynamic disk. SolutionUsing a graphical user interface
Using a command-line interfaceYou can use the diskpart utility to convert a disk to dynamic. First, run diskpart to enter interactive mode: > diskpart You need to get a list of disks so you can select the one you want to convert: > list disk In the following example, we'll select disk 0: > select disk 0 Now, run the following command to convert the disk: > convert dynamic You may be asked to reboot for the change to take effect. Using VBScriptNone of the WMI classes support converting a disk to a dynamic disk. DiscussionBy default, disks are initialized as basic on both Windows 2000 and Windows XP. You can convert a disk to dynamic to take advantage of features such as the ability to dynamically extend partitions. Some additional benefits of dynamic disks include the following:
See AlsoMS KB 175761, "Dynamic vs. Basic Storage in Windows 2000," MS KB 309044, "How To Convert to Basic and Dynamic Disks in Windows XP Professional," MS KB 254105, "Dynamic Disk Hardware Limitations," and MS KB 314343, "Basic Storage Versus Dynamic Storage in Windows XP" |