Created
June 28, 2016 11:01
-
-
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)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Все дело в атрибуте файла 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