I’m trying to get WinRAR options using VBScript as per the documentation. Just like this:
But an empty object is returned. If I try to get {smartassembly} options it works fine, so I assume I’m doing it the correct way. What can be happening?
The issue here is that the options are inconsistent in the naming of properties - sadly a victim of different devs having worked on the product over the years.
This works
dim winrarOptions
set winrarOptions = GetOptionsObject("WinRAR")
alert winrarOptions.WinRARPath
I have added .Location as an alias for the next update.