You should be able to format the drive irregardless. If the drive letter is F:, doing the folloing from a command prompt should wipe it clean (assuming Windows XP).
format F: /FS:NTFS /V:bckdrv /X
The flags are:
/FS: = file system type, FAT, FAT32, or NTFS
/V: = lable of new drive (can be anything, best to keep it under 8 characters)
/X = forces the drive to be dismounted if necessary before being formated.
GT is correct. It shouldn't matter what is on the drive, you should be able to format it. That is the reason for the dire WARNING! message.
If DOS won't let you delete a folder, it may have hidden files in it. Easiest way around this is, if you still have the deltree command available, use it to delete the folder. If you don't have that, then you will have to go into the folder and run the attrib command (attrib *.* -s -r -h). Then delete the contents of the folder, then delete the folder itself.
Recommended Posts
GT
Windows protects it's system folders religiously.
You should be able to format the drive irregardless. If the drive letter is F:, doing the folloing from a command prompt should wipe it clean (assuming Windows XP).
The flags are:
/FS: = file system type, FAT, FAT32, or NTFS
/V: = lable of new drive (can be anything, best to keep it under 8 characters)
/X = forces the drive to be dismounted if necessary before being formated.
Edited by GreasyTechLink to comment
Share on other sites
Bluzeman
GT is correct. It shouldn't matter what is on the drive, you should be able to format it. That is the reason for the dire WARNING! message.
If DOS won't let you delete a folder, it may have hidden files in it. Easiest way around this is, if you still have the deltree command available, use it to delete the folder. If you don't have that, then you will have to go into the folder and run the attrib command (attrib *.* -s -r -h). Then delete the contents of the folder, then delete the folder itself.
Rick
Link to comment
Share on other sites
CWF
Thanks, worked like a charm.
Link to comment
Share on other sites
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.