Last active
November 23, 2016 22:27
-
-
Save DustinAlandzes/2f26e4b43d3e25f57b76d6395283855c to your computer and use it in GitHub Desktop.
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
:: moves cache.db to C:\tmp\ | |
:: deletes every file in C:\NCompass\NCompass Player\cache (to stop crash) | |
:: moves cache.db back to C:\NCompass\NCompass Player\cache\cache.db | |
mkdir "C:\tmp" | |
move "C:\NCompass\NCompass Player\cache\cache.db" "C:\tmp\" | |
del "C:\NCompass\NCompass Player\cache\*.*?" | |
move "C:\tmp\cache.db" "C:\NCompass Player\cache\cache.db" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment