| 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 enumerate through installed packages in order to update properties in the package named “My Package”:
Private Sub BrowseUpdate_Click() Dim catalog As Object Dim packages As Object Dim pack As Object Dim componentsInNewPack As Object Dim util As Object
On Error GoTo failed
Set catalog = CreateObject("MTSAdmin.Catalog.1")
Set packages = catalog.GetCollection("Packages")
packages.Populate
For Each pack In packages
If pack.Name = "My Package" Then
pack.Value("SecurityEnabled") = "Y"
Exit For
End If
Next
packages.SaveChanges
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