Command Prompt: Quick Format Storage Devices

Format Devices Quickly Using Command Prompt

The syntax is :


Format /Q X:

Here X indicates drive letter. and /Q is one of the parameters of format command, which makes it quick.

Eg: If you want to Format D: drive, just change it to Format /Q D:

You can make it further simple using bat file.


@echo off
echo Enter Drive Letter and Press Enter.
set /p ltr=
echo You are about to format %ltr% drive.
Pause
Format /Q %ltr%:
echo Format Compleated.
Pause

No comments:

Post a Comment

Thank you for commenting. Please keep visiting.