cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
jlooijen
Level 2

ActiveX component can't create object:'ISWiAuto15.ISWiProject'

Hello

I'm migrating from InstallShieldX to Installshield 2009 Express. I used a small vbs script to set the project version from outside (i generate my setups using iscmdBld.exe


The script :

const MY_EXE ="c:\installshield sources\TETFactory\v5\release\src\ORQProcessor\release\VS2005\x86\ORQProcessor.exe"
set oMSI = CreateObject("WindowsInstaller.Installer")
strVersion = oMSI.Fileversion(MY_EXE)
set oMSI = Nothing
'
'ok , lets modify the setup to the good version
'
Const PROJECT = "C:\V5\setup\jaap.ise"
set oISM = CreateObject("ISWiAuto15.ISWiProject")
oISM.OpenProject PROJECT
oISM.ProductVersion = strVersion
oISM.SaveProject: oISM.CloseProject
set oISM = Nothing


gives the error :
can't create object:'ISWiAuto15.ISWiProject'

i've tried 14 instead of 15 but none of them works.

Please help, because this is blocking my migration. The script did work with Installshield X !

regards
Jaap
Labels (1)
0 Kudos
(2) Replies
hidenori
Level 17

Express edition does not support the automation interface. It does not offer as much flexibility as the other editions. Here's a help topic that explains some of the differences between the three available editions: Upgrading from Other InstallShield Editions.
0 Kudos
Christopher_Pai
Level 16

Does express use binary or xml to save it's project?
0 Kudos