Converting FAT32 to NTFS
I am trying to output a large video file (4.4 GB) on my computer. I'm getting an error message telling me that in order to process anything over 4 GB, I need to convert my drive from FAT32 to NTFS.I was instructed to do as follows from the command line:
convert c: /fs:ntfs
and then reboot. Well, I did that, and still got the same error. I then realized that the file I'm trying to process is on my d: drive. OK, so just convert the d drive. I ran
convert d: /fs:ntfs
but I now get a message saying:
Enter current volume label for drive D:
This is where I'm stumped. What do I need to enter here?
Vito