A system technician needs to prepare a newly installed secondary hard drive for Windows file storage using the DiskPart command-line utility. Arrange the following DiskPart sub-commands in the correct execution sequence to target the disk, clear existing partition data, create a partition, apply the file system, and mount the volume for operating system access.
- 1select disk 1
- 2clean
- 3create partition primary
- 4format fs=ntfs quick
- 5assign
Cevap
The correct operational order for disk initialization using DiskPart is: select disk 1, clean, create partition primary, format fs=ntfs quick, and assign.
The sequential workflow of disk management in the DiskPart CLI strictly follows target selection (`select disk 1`), disk clearing (`clean`), partition creation (`create partition primary`), file system formatting (`format fs=ntfs quick`), and volume mounting (`assign`). Each step depends directly on the successful context and output of the preceding step.
Adım Adım Çözüm
Anahtar Kavram
Windows DiskPart command-line drive initialization and partitioning workflow