Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
Launch Renoise instance with specific preferences
REM ## Renoise Launcher for Windows-based systems ##
REM See http://goo.gl/XxQHmW for details
REM Specify the name of 'your' config.xml - one for each instance
set my_config="Config1.xml"
REM Set codepage to UTF (required if your username contains special characters)
chcp 65001
REM Set up our paths - depends on OS & installed version of Renoise
REM Note: You can find the config_dir by choosing 'Show Preferences Folder'
REM from the Renoise Help menu -
set config_dir="C:\Users\YourNameHere\AppData\Roaming\Renoise\V3.1.0\"
set program_dir="C:\Program Files\Renoise 3.1.0 (x64)\"
REM Copy file and launch renoise
copy %config_dir%%my_config% %config_dir%Config.xml /Y
%program_dir%Renoise.exe
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment