Skip to content

Instantly share code, notes, and snippets.

@loopmode
Last active November 8, 2022 08:21
Show Gist options
  • Save loopmode/62056a7b7baec15b7e55244f597d358e to your computer and use it in GitHub Desktop.
Save loopmode/62056a7b7baec15b7e55244f597d358e to your computer and use it in GitHub Desktop.
Moving Propellerhead Reason to another disk to free space
# Reason 11 eats up lots of space for content files
# An easy solution is to move the contents to another drive and create symlinks to the new locations
# --- These steps/commands are for Windows ---
mkdir D:\Reason\_symlinks\AppData
mkdir D:\Reason\_symlinks\ProgramData
mkdir D:\Reason\_symlinks\UserData
mv "%USERPROFILE%\AppData\Roaming\Propellerhead Software" "D:\Reason\_symlinks\AppData"
mv "%USERPROFILE%\Music\Propellerhead Content" "D:\Reason\_symlinks\UserData"
mv "%PROGRAMDATA%\Propellerhead Software\Soundbanks" "D:\Reason\_symlinks\ProgramData"
mklink /J "%USERPROFILE%\AppData\Roaming\Propellerhead Software" "D:\Reason\_symlinks\AppData\Propellerhead Software"
mklink /J "%USERPROFILE%\Music\Propellerhead Content" "D:\Reason\_symlinks\UserData\Propellerhead Content"
mklink /J "%PROGRAMDATA%\Propellerhead Software\Soundbanks" "D:\Reason\_symlinks\ProgramData\Soundbanks"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment