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

  • Guidance for "manual" deployment is found in KB 17880...

    The InTrust agent can be manually (or via GPOs) installed by running the ADC_AGENT.xx.x.*.*.msi installation package from the DVD\Agent folder on the InTrust DVD on the target computer (name and folder varies may vary depending on InTrust package and version) - see https://support.quest.com/SUPPORT/index?page=solution&id=SOL26320 for more information on switches for silent install. This is the simplest way to install the agent on a Windows machine when automatic deployment from InTrust is not possible due to firewalls or security policies.

    Note:
    If turned on, User Access Control (UAC) may prevent installation package from running properly. To avoid possible problems, the installation package should be run under the local Administrator account (for that, either log on as Administrator, or use the runas command).
    If the DVD is unavailable, complete the following steps:
    Log on to the target computer using a local administrator account.
    Copy all files in the <InTrust_Server_installation_folder>\Server\ADC\Agent\winnt_x86\redist folder on the InTrust server to a local folder on the target computer. The agent will be installed to this folder.
    In the command prompt on the target computer, cd to this folder and run the following command:
    adcscm.nt_intel -install
    To establish a connection between an agent and an InTrust server, you should log on to the computer where the agent is installed using an administrative account (Microsoft Windows computers) or the root account (Unix computers) and run one of the following commands:
    adcscm.nt_intel -add ServerName Port [password]
    To find out which InTrust server or servers an agent responds to, log on to the computer where the agent is installed using an administrative account (Microsoft Windows computers) or the root account (Unix computers) and run one of the following commands:
    adcscm.nt_intel -list
  • 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