Problem in deployement on certain cmputers

Hi

I have problems to install the agent by the deployement on certain comp[uters.

I wanted to know ' is there a way to get the agent as msi with parametters like (Intrust Server Ip) ?

If yes' i wish to deploy the agent with a software like SCCM..

Thanks in advance

Parents
  • You can use Windows Installer Setup Transform File technology. First create mst with attached script, then use this mst along with msi in SCCM.

    .SYNOPSIS
    Creates an MST Transformation File which can be used later to customize the behavior of an existing Quest InTrust Agent MSI file.
    .PARAMETER Server
    Specifies the InTrust Server to which you bind the agent. This may be either the NetBIOS name, FQDN, or IP address.
    .PARAMETER Port
    Specifies the port number at which the server listens to the requests coming from the agent; the default port number is 900.
    .PARAMETER Password
    The password for initial agent-server authentication. By default this password is the same as the organization password supplied during InTrust Server installation.
    .PARAMETER MsiFile
    The path to the Quest InTrust Agent MSI file. By default this is ADC_AGENT.11.4.1.4837.msi located in the same folder with the script.
    .PARAMETER InstallationFolder
    The installation path of the agent. By default this is ADCAgent folder located in the Windows installation folder.
    .EXAMPLE
    Powershell.exe -NoProfile -NonInteractive -File .\CreateConnectionParametersMst.ps1 -Server "10.10.10.10" -Password "MyInTrustOrgPass"
    .EXAMPLE
    Powershell.exe -NoProfile -NonInteractive -File .\CreateConnectionParametersMst.ps1 -Server "10.10.10.10" -Port 999 -Password "MyInTrustOrgPass" -MsiFile "\\MyServer\Distr\Quest\ADC_AGENT.11.4.1.4837.msi" -InstallationFolder "E:\Apps\Quest\Agent"

    20201223-Msi-Mst.zip

Reply
  • You can use Windows Installer Setup Transform File technology. First create mst with attached script, then use this mst along with msi in SCCM.

    .SYNOPSIS
    Creates an MST Transformation File which can be used later to customize the behavior of an existing Quest InTrust Agent MSI file.
    .PARAMETER Server
    Specifies the InTrust Server to which you bind the agent. This may be either the NetBIOS name, FQDN, or IP address.
    .PARAMETER Port
    Specifies the port number at which the server listens to the requests coming from the agent; the default port number is 900.
    .PARAMETER Password
    The password for initial agent-server authentication. By default this password is the same as the organization password supplied during InTrust Server installation.
    .PARAMETER MsiFile
    The path to the Quest InTrust Agent MSI file. By default this is ADC_AGENT.11.4.1.4837.msi located in the same folder with the script.
    .PARAMETER InstallationFolder
    The installation path of the agent. By default this is ADCAgent folder located in the Windows installation folder.
    .EXAMPLE
    Powershell.exe -NoProfile -NonInteractive -File .\CreateConnectionParametersMst.ps1 -Server "10.10.10.10" -Password "MyInTrustOrgPass"
    .EXAMPLE
    Powershell.exe -NoProfile -NonInteractive -File .\CreateConnectionParametersMst.ps1 -Server "10.10.10.10" -Port 999 -Password "MyInTrustOrgPass" -MsiFile "\\MyServer\Distr\Quest\ADC_AGENT.11.4.1.4837.msi" -InstallationFolder "E:\Apps\Quest\Agent"

    20201223-Msi-Mst.zip

Children
No Data