Skip to content

Instantly share code, notes, and snippets.

@Warhand
Created June 4, 2023 17:15
Show Gist options
  • Save Warhand/3522a57e7b8301c7f82d728795f6ed33 to your computer and use it in GitHub Desktop.
Save Warhand/3522a57e7b8301c7f82d728795f6ed33 to your computer and use it in GitHub Desktop.
A simple batch file for creating a full list of the mods installed in a Modded Minecraft instance. Simply place this file into your MC directory and run it, it will create a text file with the list, as well as the date and time. This can be used to easily track the full modlist in a github project.
cd "%cd%\mods"
tree /f /a > "../Automodlist.txt"
echo "file generated"
date /t
time /t
date /t >> "../Automodlist.txt"
time /t >> "../Automodlist.txt"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment