Skip to content

Instantly share code, notes, and snippets.

@xCASx
Created June 28, 2016 11:01
Show Gist options
  • Save xCASx/1a40c3ff02e2098d245122dd94d2cb11 to your computer and use it in GitHub Desktop.
Save xCASx/1a40c3ff02e2098d245122dd94d2cb11 to your computer and use it in GitHub Desktop.
Add/remove SPARSE file attribute on windows (when set .iso image can't be mounted)
Все дело в атрибуте файла SPARSE (разреженный), при копировании он и снимается. Убрать его можно еще из командной строки:
убрать атрибут:
fsutil sparse setflag <полный путь к файлу> 0
проверить атрибут:
fsutil sparse queryflag <полный путь к файлу>
присвоить атрибут:
fsutil sparse setflag <полный путь к файлу> 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment