I have a JScript script which is called by cscript. That script creates Visual Source Safe ActiveX object using new ActiveXObject("SourceSafe") code in it's internals.
Everything was ok on 32-bit windows. But on 64-bit windows I need to call 64-bit version of cscript and still use 32-bit ActiveX object (SourceSafe). 64-bit version of cscript doesn't see that ActiveX class (because 32-bit class is in 32-bit branch of windows registry).
Is there any way to create that object from 64-bit cscript? (except writing 64-bit automation adapter for SourceSafe ActiveX class)