VST path from registry

DSP, Plugin and Host development discussion.
RELATED
PRODUCTS

Post

discoDSP wrote:
hibrasil wrote:my innosetup script is here:

https://github.com/olilarkin/wdl-ol/blo ... Effect.iss
I'm working on updated Inno Setup installers and found your script very useful :) The URL was giving a 404 but here it is a working one:

https://github.com/olilarkin/wdl-ol/blo ... Effect.iss
glad you found it useful. if you have any improvements., please send them my way

Post

hibrasil wrote:glad you found it useful. if you have any improvements., please send them my way
To quickly test the 32-bit installer on 64-bit I replaced:

Code: Select all

procedure InitializeWizard;
begin
  if Win64 then begin
with

Code: Select all

procedure InitializeWizard;
begin
  if Is64BitInstallMode then begin
So I can comment

Code: Select all

ArchitecturesInstallIn64BitMode=x64
and check the behaviour.

Also, wouldn't make more sense to use the wizard paths after component selection? There may be cases where the user won't select VST2 plugins.

Post

Edited.
Last edited by discoDSP on Mon Mar 12, 2018 2:07 pm, edited 1 time in total.

Post

Edited.
Last edited by discoDSP on Mon Mar 12, 2018 2:07 pm, edited 1 time in total.

Post

My script is here viewtopic.php?f=33&t=501615

Post Reply

Return to “DSP and Plugin Development”