Glam Prestige Journal

Bright entertainment trends with youth appeal.

I don't want to have the .minecraft folder in the %APPDATA% folder. How can I move it somewhere else?

I'm using Launcher version 2.1, that looks like this:

enter image description here

2 Answers

The Minecraft Launcher has a couple of Command Line parameters that you can use for changing the behavior of it. The --workDir parameter allows you to specify the location of the .minecraft folder.

To use this parameter, you can create a batch file that will open the Launcher and change the folder. You can just copy-paste the following snippet into notepad and save it as Launch.bat on the same folder as the Minecraft Launcher. You need to replace FOLDER with the location of the folder that you want to use.

@echo off
start MinecraftLauncher.exe --workDir "FOLDER"

Then, just open Launch.bat to open the Launcher and use the specified folder.

Move the .minecraft folder to where you want it to be. Then, open your launcher and go into the Installations tab, click on the profile you play on, click on browse button under Game Directory, and select the .minecraft from the directory you moved it to.

1