Skip to content

JDSherbert/Changing-VST3-Folder-Guide

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 

Repository files navigation

image

Guide: Changing The Default VST3 Folder Location

Stars Badge Forks Badge Watchers Badge Issues Badge


JUCE Plugin Guide




Overview

If you are a person who uses DAW to compose music often, you may have come across VST3 plugins. VST3 plugins are awesome, but there are a few issues with them. The recurring message is this:

You can’t change the default VST3 folder. It MUST be placed there. This was set by Steinberg, the licensor of the VST format. This has to do with Steinberg’s own DAWs like Nuendo/Cubase and their internal plugin manager, which uses this system folder for installed VST3 plugins. This also has to do with the VST3 preset standard, which is able to save presets with different categories. All DAWs on the marked which support VST3 are forced to search new VST3 plugins in C:\Program Files\Common Files\VST3

This would be fine, except I don't like being told "No".

Instead, there are a few ways to "trick" the DAW into searching oher folders for your VST3 plugins. If you're a Reaper user, then cool, you can ignore this as Reaper doesn't care and will blindly search recursively for any VST format. For the rest of us, this little trick should work on FL Studio and Renoise.


Windows Windows JUCE Plugin Guide




Guide: Changing The Default VST3 Folder On Windows OS

On Windows, you can change the default folder for VST3 Plugins by using Symbolic Links. To do so, follow this guide.

Firstly, open up Command Prompt by typing cmd into the search bar.

image image

Next, right click Command Prompt and select "Run as Administrator". You'll need to do this as you'll be making changes to the C:\ drive, which is usually the OS drive. Windows has special protection and required permissions for this drive.

image

Next, open File Explorer and navigate to this path: C:\Program Files\Common Files

If it doesn't exist yet, or you deleted it when you moved the plugins, you'll need to recreate this path. Make sure to delete the VST3 folder here as we'll be replacing it with a symbolic link! Make sure the new folder you wish to path to exists as well!

image

Now, in the Command Prompt, type the following command to create a symbolic link (Junction):

mklink /J "C:\Program Files\Common Files\VST3" "D:\Your\New\VST3\Path"

image image

And that's pretty much it - if you did it correctly, you should get this message! Now you should be able to re-scan for plugins in your DAW and it will now pick up your VST3 plugins, without them needing to be in the default folder!

image

If this helped you, give this repository a star and share with others!

Releases

No releases published

Packages

No packages published