Soru

Zorluk: OrtaMicrosoft Command-Line Tools

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.

  1. 1select disk 1
  2. 2clean
  3. 3create partition primary
  4. 4format fs=ntfs quick
  5. 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

1
Set execution context to target disk
Disk 1 becomes the active focus for DiskPart commands.
DiskPart requires a target disk selection before performing structural modifications to protect active system drives.
2
Wipe disk partition tables
The target disk is completely cleared and marked as unallocated space.
Existing partition records must be removed before creating a fresh primary partition layout.
3
Generate primary storage volume structure
A raw primary partition is established across the unallocated disk space.
The operating system requires a defined partition boundaries before a file system can be formatted.
4
Format partition with target file system
The primary partition is formatted with the NTFS file system metadata.
Windows native drives require a compatible file system such as NTFS to store files and security permissions.
5
Mount volume and allocate drive letter
The formatted partition receives an available drive letter (e.g., E:) and becomes accessible in Windows Explorer.
Without assigning a drive letter or mount point, users cannot access the storage volume through standard operating system paths.

Anahtar Kavram

Windows DiskPart command-line drive initialization and partitioning workflow
Bu soruyu puanla