Skip to content

Instantly share code, notes, and snippets.

@crysxd
Last active April 27, 2025 15:36
Show Gist options
  • Save crysxd/e5586b291dfcbec569111b7269d30869 to your computer and use it in GitHub Desktop.
Save crysxd/e5586b291dfcbec569111b7269d30869 to your computer and use it in GitHub Desktop.
Syncing Cura Settings & Profiles Accross multiple devices

Syncing Cura Settings & Profiles Accross multiple devices

I use multiple devices to control my 3D printer and it's alwys a hassle to move changes on profiles etc. between those machines leading to situations where I use an old version of my profiles to print a part because I just forgot to update it.

Here is how you can sync Cura settings between multiple devices:

  1. Setup Google Drive / OneDrive / Dropbox on every machine you want to sync the Cura settings on
  2. Go to the following location and copy the folder called cura to any convinient location inside your Google Drive / OneDrive / Dropbox folder. You can also rename the folder form cura to somthing else, I called mine Cura Settings.
  • Windows: %userprofile%\AppData\Roaming\cura
  • Mac: ~/Library/Application Support/Cura/
  1. Create a symbolic link between the cura folder (which is now inside your Google Drive / OneDrive / Dropbox) and the original location. Open a Terminal on Mac or a Command Prompt (start with admin rights) on Windows and type following:
  • Window: mklink /D "%userprofile%\Google Drive\Cura Settings" "%userprofile%\AppData\Roaming\cura"
  • Mac: ln -s "~/Google Drive\Cura Settings" ~/Library/Application\ Support/Cura/

Cura will now access the synced settings in your Google Drive / OneDrive / Dropbox. This works also to sync settings cross platform with Windows and Mac.

Linux stores the files slightly differently compared to Windows and Mac so you can't adopt this method 1:1. See the Cura documentation to see which paths you need to sync using symbolic links.

@901507
Copy link

901507 commented Apr 27, 2025

Worked well as proposed: Settings on Desktop and Notebook (WIN11) Appdata\Roaming\Cura now linked to common OneDrive. Admin rights necessary. Confirmation by the system: symbolische Verknüpfung erstellt für C:\Users...\AppData\Roaming\cura <<===>> C:\Users...
Explorer shows the AppData\Roaming\cura as a linked direktory

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment