Release Automation

  • 1.  How to get the path of COM+

    Posted Aug 30, 2016 03:08 AM

    How to get the actual path of COM+ to delete some files from COM+ Applications by using Delete file or folder Action in CA release Automation tool .
    Need to automate the action by giving the path CARA tool.



  • 2.  Re: How to get the path of COM+
    Best Answer

    Broadcom Employee
    Posted Aug 31, 2016 05:07 AM

    Hi ,

     

    If this COM+ app was installed with a msi installer you may can get it from the registery using a Powershell script

    The following PS command list all installed applications with the install path .

    PS > Get-ItemProperty HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall\* |Select DisplayName, DisplayVersion, Publisher, InstallDate, InstallLocation

    Above will show the whole list to filter on application name use something like

    PS > Get-ItemProperty HKLM:\Software\Microsoft\Windows\CurrentVe
    rsion\Uninstall\* |Select DisplayName, DisplayVersion, Publisher, InstallDate, I
    nstallLocation | Where-Object {$_.DisplayName -match "Global.*" }

     

    Regards

    Dirk



  • 3.  Re: How to get the path of COM+

    Broadcom Employee
    Posted Sep 12, 2016 03:15 AM

    Hi 

    Did the  previous update answered your question? If it did please mark it as the right answer. When your question is not answered or you still have additional questions please let us know.

    With Kind Regards

     

    Dirk