GetOptionsObject and 7-zip

I want to set 7zip exe location from script, eg. vbscript, but what is the correct Title and property?

This do not work.
dim opts
set opts = GetOptionsObject(“Archivers”, “7-zip”)

opts.location = C:\…

Also, i tried with powershell using get-member to list the properties, but $context is always null.

$opts = $Context.GetOptionsObject(“Archivers”, “7-zip”)
$opts | get-member


Running latest finalbuilder 7

Hi Jakob,

Apologies there seems to be a spelling mistake in the property for the path name.

dim opts
set opt = GetOptionsObject(“7-zip”)
opt.SenvenZipPath = “C:\…”