Summary: Use Windows PowerShell to do a full format of a drive.
How can I use Windows PowerShell to do a full format of a drive?
Use the Format-Volume cmdlet and specify the -FullFormat parameter, for example:
Format-Volume -DriveLetter C -FileSystem FAT32 -FullFormat –Force
0 comments