DOS basics

From Bitpost wiki
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

To convert a thumb drive from FAT32 (4GB max file size) to NTFS (no practical limit):

  • convert drive_letter:/fs:ntfs

To delete a folder and everything in it quietly in a batch file:

del %folder /S /F/ /Q
rmdir %folder /S /Q