在 Windows 7 上将文件从标记为“系统文件”更改回“正常”状态

Dua*_*ane 4 windows-7

我有一个 mp3 文件,根据 Windows 7 标记为“系统文件”。

有没有办法将此文件改回“正常”文件?

And*_*ore 6

Windows 7 中的“系统文件”是标记有以下两个属性的文件:

  • 档案
  • 系统

Windows 7 中的“隐藏系统文件”是带有以下三个属性标记的文件:

  • 档案
  • 系统

要重置“系统文件”,只需运行以下命令:

attrib -A -S file.ext
Run Code Online (Sandbox Code Playgroud)

要重置“隐藏的系统文件”,请运行以下命令:

attrib -A -H -S file.ext
Run Code Online (Sandbox Code Playgroud)