I have a mp3 file which is flagged as a 'System File' according to Windows 7.

Is there a way to change this file back to a 'Normal' file?

link|improve this question
feedback

3 Answers

up vote 0 down vote accepted

"System files" in Windows 7 are files tagged with the following two attributes:

  • Archive
  • System

"Hidden system files" in Windows 7 are files tagged with the following three attributes:

  • Archive
  • Hidden
  • System

To reset "System files", simply run the following command:

attrib -A -S file.ext

To reset "Hidden System files", run the following:

attrib -A -H -S file.ext
link|improve this answer
feedback

Try running "attrib -S filename" from a command prompt.

link|improve this answer
feedback

If it's flagged as a system file, it might also be flagged as a hidden file, so open command prompt, then cd C:\path\to\folder and then attrib -h -s song.mp3. The minus sign means removing an attribute, 'h' stands for hidden, 's' stands for system. For adding an attribute, change -h to +h.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.