Created
March 22, 2015 11:23
-
-
Save Zingam/878357f3e6bef3c90259 to your computer and use it in GitHub Desktop.
Unset the "sparse' flag of a file
This file contains hidden or 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
REM Unsets "sparse" flag of a file. | |
REM Usage: Drag and drop the file onto the batch file. | |
fsutil sparse queryflag %1 pause | |
fsutil sparse setflag %1 0 | |
fsutil sparse queryflag %1 pause |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment