A systems administrator needs to reconfigure a single-partition disk on a Windows 11 workstation to establish a dedicated data volume using command-line tools. The administrator launches an elevated Command Prompt and starts the DiskPart utility. In what order should the administrator execute the DiskPart sub-commands to reduce the OS partition size and initialize the new formatted data volume?
- 1select volume 1
- 2shrink desired=50000
- 3create partition primary
- 4format fs=ntfs quick
- 5assign letter=D
Answer
The correct operational sequence in DiskPart is: 1) select volume 1, 2) shrink desired=50000, 3) create partition primary, 4) format fs=ntfs quick, 5) assign letter=D.
The sequence follows the standard DiskPart workflow for non-destructive volume splitting: target selection (`select volume`), releasing unallocated space (`shrink`), building the partition metadata (`create partition`), file system initialization (`format`), and OS drive mounting (`assign`).
Step-by-Step Solution
Key Concept
DiskPart command-line partition management workflow
Estimated Time:2m 0s