Platform SDK: Transaction Server |
[This product will work only on Windows NT 4.0 versions and earlier. For Windows 2000 and later, see COM+ (Component Services).]
To install a pre-built package named “Test.pak” into the MTS Explorer:
Private Sub InstallPackage_Click() Dim catalog As Object Dim packages As Object Dim util As Object
On Error GoTo failed
Set catalog = CreateObject("MTSAdmin.Catalog.1") Set packages = catalog.GetCollection("Packages")
Set util = packages.GetUtilInterface util.InstallPackage "c:\test.pak", "", 0 Exit Sub
failed: MsgBox "Failure code " + Str$(Err.Number) End Sub
See Also
MTS Administration Objects, MTS Collection Types, MTS Administration Object Methods, Automating Advanced MTS Administration with Visual Basic