source redirection of MSI packages
We were using Computer Associates Sofware Delivery Option(SDO) to send out our MSI packages. We are now switching to SMS 2003. I am trying to figure out a way to redirect our source for old MSI packages from CA SDO to SMS 2003 without having to import all our old packages into SMS 2003. The old packages I am referring to are packages of old versions that we no longer use. Basically, if we try to uninstall an old package through add remove programs it can't find the source because we are no longer using SDO and the place where the MSI's once resided does not exist anymore. So on the uninstall it is looking for the old source of the MSI from when it was originally installed. I do not want to have import all our old MSI packages to be able to uninstall an old MSI. Any help or ideas would much appreciated. Thank you in advnace.
0 Comments
[ + ] Show comments
Answers (2)
Please log in to answer
Posted by:
WiseUser
20 years ago
Dim oInst
Const PRODCODE = "{350C97B0-3D7C-4EE8-BAA9-00BCB3D54227}" '(webfolders)
Const USER = "" 'leave blank for "Machine" install
Const NEWSRC = "D:\MySource\"
Const INSTALLLEVEL = 65535
Const msiInstallStateAbsent = 2
Set oInst = CreateObject("WindowsInstaller.Installer")
oInst.AddSource PRODCODE, USER, NEWSRC
oInst.ConfigureProduct PRODCODE, INSTALLLEVEL, msiInstallStateAbsent
Set oInst = Nothing
Const PRODCODE = "{350C97B0-3D7C-4EE8-BAA9-00BCB3D54227}" '(webfolders)
Const USER = "" 'leave blank for "Machine" install
Const NEWSRC = "D:\MySource\"
Const INSTALLLEVEL = 65535
Const msiInstallStateAbsent = 2
Set oInst = CreateObject("WindowsInstaller.Installer")
oInst.AddSource PRODCODE, USER, NEWSRC
oInst.ConfigureProduct PRODCODE, INSTALLLEVEL, msiInstallStateAbsent
Set oInst = Nothing
Posted by:
WiseUser
20 years ago
Rating comments in this legacy AppDeploy message board thread won't reorder them,
so that the conversation will remain readable.
so that the conversation will remain readable.