Skip to content

Instantly share code, notes, and snippets.

@DustinAlandzes
Last active November 23, 2016 22:27
Show Gist options
  • Save DustinAlandzes/2f26e4b43d3e25f57b76d6395283855c to your computer and use it in GitHub Desktop.
Save DustinAlandzes/2f26e4b43d3e25f57b76d6395283855c to your computer and use it in GitHub Desktop.
:: 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