-
1
- #1
EdMacDonald
Programmer
<br>'**************************************************<br>' This script will install CPS COM components<br>' Be sure the Setup variables in this section<br>' are correct.<br>'<br>'<br>' Ed MacDonald<br>' <A HREF="mailto:EdMacDonald@yahoo.com">EdMacDonald@yahoo.com</A><br>'**************************************************<br><br>Option Explicit<br><br> ' Trailing slash is required on MTS_Package_Directory<br> Dim MTS_Package_Name , MTS_Package_Directory, MTS_Package_DLL <br> MTS_Package_Name = "MyPackage"<br> MTS_Package_Directory = "C:\Program Files\mts\packages\"<br> MTS_Package_DLL = "MyPackage.dll"<br> '"<br><br>If MsgBox("This will Install the MTS package '" & MTS_Package_Name & "' overwriting the existing installation.", 1, "Confirm Installation"
= 1 Then<br> Call Install()<br>End If<br><br><br><br>Sub Install<br> <br>'**************************************************<br>' Declarations & Constants<br>'**************************************************<br><br> Dim CRLF <br> Dim objFS, currentPath, installPath<br> Dim mtsCatalog, mtsPackages, pkgUtil<br><br> CRLF = Chr(13) & Chr(10)<br><br> Set objFS = WScript.CreateObject("Scripting.FileSystemObject"
<br> currentPath = objFS.GetAbsolutePathName("."
<br> installPath = MTS_Package_Directory & MTS_Package_Name<br><br> Set mtsCatalog = CreateObject("MTSAdmin.Catalog.1"
<br> Set mtsPackages = mtsCatalog.GetCollection("Packages"
<br> mtsPackages.populate<br> Set pkgUtil = mtsPackages.GetUtilInterface<br><br>'**************************************************<br>' Stop IIS<br>'**************************************************<br><br>' MsgBox("Stopping Web Server"
<br> Dim oServer<br> Set oServer = getObject("IIS://LocalHost/W3svc/1"
<br> oServer.Stop<br><br>'**************************************************<br>' Uninstall Existing Package<br>'**************************************************<br><br> 'MsgBox "This will Uninstall the MTS package '" & MTS_Package_Name & "' if it exists.", 1, "Confirm Uninstall"<br><br> Dim numPackages, i<br> numPackages = mtsPackages.Count<br> For i = numPackages - 1 To 0 Step -1<br> If mtsPackages.Item(i).Value("Name"
= MTS_Package_Name Then<br> pkgUtil.ShutdownPackage(mtsPackages.Item(i).Value("ID"
)<br> mtsPackages.Remove (i)<br> End If<br> Next<br><br> ' Commit our deletions <br> mtsPackages.SaveChanges<br><br><br>'**************************************************<br>' Replace Files in Package Directory<br>'**************************************************<br><br> 'MsgBox "Copy: " & currentPath & "\" & MTS_Package_DLL & CRLF & " To: " & installPath & "\" & MTS_Package_DLL & "?", 1, "Confirm File Copy"<br><br> If not objFS.FolderExists(installPath) Then<br> objFS.CreateFolder(installPath)<br> End If<br> objFS.CopyFile currentPath & "\" & MTS_Package_DLL, installPath & "\" & MTS_Package_DLL, True<br><br>'**************************************************<br>' Install New Package<br>'**************************************************<br><br> 'MsgBox "This will Install MTS package '" & MTS_Package_Name & "'", 1, "Confirm Install"<br><br> ' Add a new package<br> Dim newPackage<br> Set newPackage = mtsPackages.Add<br> newPackage.Value("Name"
= MTS_Package_Name<br> newPackage.Value("SecurityEnabled"
= "N"<br> <br> ' Commit new package<br> mtsPackages.SaveChanges<br> <br> ' Refresh packages<br> mtsPackages.Populate<br> <br> ' Get components collection for new package<br> Dim mtsComponents<br> Set mtsComponents = mtsPackages.GetCollection("ComponentsInPackage", newPackage.Value("ID"
)<br> mtsComponents.Populate<br> <br> ' Install components<br> Dim util, dllPath<br> Set util = mtsComponents.GetUtilInterface<br> <br> dllPath = installPath & "\" & MTS_Package_DLL<br> util.InstallComponent dllPath, "", ""<br> <br> ' Refresh components<br> mtsComponents.Populate<br><br><br>'**************************************************<br>' Start IIS<br>'**************************************************<br>' MsgBox("Starting Web Server"
<br>' Dim oServer<br>' Set oServer = getObject("IIS://LocalHost/W3svc/1"
<br> oServer.Start<br><br><br>'**************************************************<br>' Done<br>'**************************************************<br> MsgBox("Done"
<br><br>End Sub