Variables for path to installed 3rd-Party software?

Hi,

I use the same FB scripts on multiple PCs and for some reason some 3rd-party tools install differently on different PCs, for example Beyond Compare 4.

Is there any way to access the exe path that is saved inside FB (see attached image) ?

The reason I need the EXE path is that for some cases I prefer to use the Execute Program action which gives me the option of not waiting for the action to complete (which the Beyond Compare action does not).

Very best regards,

Olivier

You can use Scripting to access the options :

var opt = GetOptionsObject("Beyond Compare");
if (opt != null) { 
  FBVariables.MyProjectVar = opt.BeyondCompare4Location;
}

Cool.
Thank you very much,

Olivier