'Create project object for InstallShield 2019 Set pProject = CreateObject("ISWiAuto25.ISWiProject") 'Create project object for InstallShield 2020 'Set pProject = CreateObject("ISWiAuto26.ISWiProject") 'Open project pProject.OpenProject "" 'set 64 bit option to YES for single component 'Set pComponent = pProject.ISWiComponents.Item("") 'pComponent.Attrib64BitComponent = "True" 'Set 64 bit option to YES for all component in ISM Set pComponent = pProject.ISWiComponents Msgbox pComponent.Count For Each pComponent in pProject.ISWiComponents 'Setting Component to 64bit pComponent.Attrib64BitComponent = "True" Next 'Adding a Product Config and Release 'pProject.AddProductConfig("Prod config").AddRelease("Release") 'Set an existing product configuration 'Set productconfig = pProject.ISWiProductConfigs.Item("Prod config") 'Set and existing release 'Set Release = productconfig.ISWiReleases("Release") 'Build the release 'Release.Build() 'Save and close pProject.SaveProject pProject.CloseProject