bcbarton wrote:This is possible with batch files in windows.
Assuming that you named the 1.7.3 version this: "minecraft-1.7.3.jar" and the launcher program is located in "E:\Games\Minecraft\" like mine is, this is what you would want in a batch file:
copy %appdata%\.minecraft\bin\minecraft-1.7.3.jar %appdata%\.minecraft\bin\minecraft.jar /y
E:\Games\Minecraft\Minecraft.exe
The same can be done with any version backup you would like to run, so 1.8.1 might be like this:
copy %appdata%\.minecraft\bin\minecraft-1.8.1.jar %appdata%\.minecraft\bin\minecraft.jar /y
E:\Games\Minecraft\Minecraft.exe
To create the batch file, just copy the lines into notepad and save the file as something like "Minecraft 1.7.3.bat" and "Minecraft 1.8.1.bat". You would then run the batch file for the version you are interested in.
I'm troubleshooting atm lol
So I downgraded my MC to 1.7.3, renamed then minecraft.jar to minecraft-1.7.3.jar.
Then I opened the Notepad and copied this:
copy %appdata%\.minecraft\bin\minecraft-1.7.3.jar %appdata%\.minecraft\bin\minecraft.jar /y
C:\Users\gebruiker\Desktop\Free Time\Minecraft.exe
Now what?
or did I copied it wrong? (Not really familiar with batches)