Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 1

Working With Drives

1. Format Command
-The format command partitions and uses many switches to control the type of format.
FORMAT DRIVE: /FS: NTFS /Q
FORMAT /Q /X DRIVE:

2. CHKDSK Command
-fixes formatted partitions.
CHKDSK /F

3. SFC command
-repairs critical windows files based on the system store
SFC /scannow

4. DISM command
-repairs critical windows files based on the online system store.
DISM /online /cleanup-image /restorehealth

5. DISKPART command
-partitions drive
DISKPART
SELECT DISK N
CLEAN
CREATE PARTITION PRIMARY
FORMAT FS=NTFS QUICK
ASSIGN

You might also like