### ASRA Installer Arguments Example Source: https://docs.delinea.com/online-help/secret-server/session-recording/installing-the-asra/index.htm This example shows the default arguments for the ASRA installer, which can be customized via a transform file. Ensure all parameters are correctly specified. ```text runSessionRecordingAgent -ProductCode=[ProductCode] -Installer.Version=10.6.000000 -E2S.ConnectionString=[E2S.CONNECTIONSTRING] -E2S.AuthorizationGuid=[E2S.AUTHORIZATIONGUID] ``` -------------------------------- ### Example: Update Erlang using a URL Source: https://docs.delinea.com/online-help/rabbitmq-helper/powershell-cmdlets/update-erlang.htm This example demonstrates how to use the Update-Erlang cmdlet to download and install Erlang from a provided URL. Replace '{url string}' with the actual URL of the Erlang installer. ```powershell Update-Erlang -UrlOrFilePath {url string} ``` -------------------------------- ### Install Agent Package (Solaris Example) Source: https://docs.delinea.com/online-help/server-suite/install/deployment/install-agents/native-install.htm Use the pkgadd command to install the Server Suite agent package on Solaris. ```bash pkgadd -d CentrifyDC-a admin ``` -------------------------------- ### Download Erlang Installer Source: https://docs.delinea.com/online-help/rabbitmq-helper/powershell-cmdlets/get-erlanginstaller.htm This example shows the basic usage of the Get-ErlangInstaller cmdlet to download the Erlang Installer from its default web location. ```powershell Get-ErlangInstaller ``` -------------------------------- ### Run Interactive Bundle Installation Source: https://docs.delinea.com/online-help/server-suite/install/deployment/install-agents/index.htm Execute the install-bundle.sh script without options to start an interactive installation of the agent bundle. ```bash # ./install-bundle.sh ``` -------------------------------- ### Run Agent Installation Script Source: https://docs.delinea.com/online-help/server-suite/eval/nix-eval/configuring-the-basic-evaluation-environment/installing-the-agent-for-nix.htm Execute the install.sh script to begin the agent installation process on Red Hat Enterprise Linux. This script guides you through the setup. ```bash /bin/sh install.sh ``` -------------------------------- ### Get help using wildcards in ADEdit command pattern Source: https://docs.delinea.com/online-help/server-suite/dev/adedit/commandreference/guid_to_id.htm This example demonstrates using wildcards to find ADEdit commands. The pattern '?et*' will match commands starting with 'get' or 'set'. ```bash help ?et* ``` -------------------------------- ### Run Setup Utility (New Encryption Mode) Source: https://docs.delinea.com/online-help/integrations/jdbc-driver/run-setup-utility.htm Execute this command to run the Setup Utility with a new encryption mode. This mode creates an encryption key and stores it in a hidden folder with restricted access permissions. ```bash java -jar SetUpUtility.jar 1 ``` -------------------------------- ### GKE Hello-App Setup Source: https://docs.delinea.com/online-help/devops-secrets-vault/usage/auth-general/authgcp/index.htm Prepare the directory and create the main Go file for a simple hello-app within the GKE cluster using the Cloud Shell. ```bash mkdir hello-app cd hello-app cat > main.go ``` -------------------------------- ### Export Multiple Sessions with FindSessions.exe Source: https://docs.delinea.com/online-help/server-suite/auditing/find-session/deleting-sessions/sample-script-for-deleting-multiple-sessions.htm This example demonstrates how to export specific types of session information, such as UNIX commands, for a given installation to a specified directory. The Start /WAIT command ensures the export operation completes. ```batch Start /WAIT FindSessions.exe /i="MyInstallation" /export="UnixCommand" /path="C:\UNIX" ``` -------------------------------- ### Example of Group Policy Extension Installer Filename Source: https://docs.delinea.com/online-help/server-suite/admin/admin-win/installation.htm This is an example of the executable file name for the Group Policy Extension installer. ```text CentrifyDC_GP_Extension-5.2.3-win64.exe ``` -------------------------------- ### Example Adjoin Command for New Computer Provisioning Source: https://docs.delinea.com/online-help/delinea-platform/privilege-control/pcs-install-run/join-computers-domain-zone.htm An example of how to use `adjoin` in a provisioning script to join a new computer to a specific Active Directory domain and Privilege Control zone. ```bash adjoin -c "ou=UNIX Server and Workstations,ou=UNIX" -S -z production arcade.net ``` -------------------------------- ### DB2 Keytab Setup Example Source: https://docs.delinea.com/online-help/server-suite/integrate/db2/install-config-server.htm This output demonstrates the successful setup of a Kerberos keytab file for a DB2 instance using the adkeytab utility. It includes commands for creating a new account and changing its password, followed by permission and ownership adjustments. ```shell ***********adkeytabsetup (required for GSS-plugin) *********** Using /home/db2inst1/db2inst1.keytab for thekeytabfile for instance: db2inst1 NOTE:adkeytabwill prompt you for the password of the Active Directory admin user: rsriniva. #adkeytab-n -c CN=Users -u rsriniva -K /home/db2inst1/ db2inst1.keytab -P db2inst1/vaix61-2.corp.contoso.com db2inst1 rsriniva@CORP.CONTOSO.COM's password: Success: New Account: db2inst1 NOTE:adkeytabwill prompt you for the password of the Active Directory admin user: rsriniva again. #adkeytab-C db2inst1 -u rsriniva -w XXX-PASS-NOT-DISPLAYED- XXX -K /home/db2inst1/db2inst1.keytab rsriniva@CORP.CONTOSO.COM's password: Success: Change Password: db2inst1 # chmod 600 /home/db2inst1/db2inst1.keytab # chown db2inst1 /home/db2inst1/db2inst1.keytab # db2set DB2ENVLIST=KRB5_KTNAME adkeytab setup successfully! ``` -------------------------------- ### Example of Group Policy Extension MSI Installer Filename Source: https://docs.delinea.com/online-help/server-suite/admin/admin-win/installation.htm This is an example of the MSI file name for the Group Policy Extension installer. ```text CentrifyDC_GP_Extension-5.2.3-win64.msi ``` -------------------------------- ### Install HTTPS Proxy Modules and Start HTTPD on RHEL Source: https://docs.delinea.com/online-help/integrations/credentials-cache/cred-cache-setup.htm Installs necessary Apache modules for SSL proxying and starts the HTTPD service. ```bash sudo yum install mod_proxy mod_proxy_http mod_proxy_ssl sudo systemctl start httpd ``` -------------------------------- ### Run Database Maintenance Wizard Source: https://docs.delinea.com/online-help/server-suite/install/upgrade/audit/audit-related-databases.htm Execute the setup.exe with the /database flag to initiate the database maintenance wizard for upgrades. ```command-line setup.exe /database ``` -------------------------------- ### Run setupdb2.sh Script with Options Source: https://docs.delinea.com/online-help/server-suite/integrate/db2/install-config-server.htm Execute the setupdb2.sh script to install and configure DB2 plug-ins. This example specifies the database instance name, enables verbose mode for detailed prompts, and disables debug mode. ```bash ./setupdb2.sh inst=db2inst1 verbose=1 ``` -------------------------------- ### Get Installed Printers Source: https://docs.delinea.com/online-help/server-suite/dev/powershell/auth-powershell/predefined-scripts.htm Retrieves a list of all installed printers on the system. ```powershell $printers = gwmi win32_printer ``` -------------------------------- ### Example: Exporting UNIX Input and Output Source: https://docs.delinea.com/online-help/server-suite/auditing/find-session/exporting/exporting-unix-input-and-output.htm This example demonstrates how to export UNIX input and output for a specific computer and save it to a designated folder. It includes placeholders for installation name, machine name, and output path. ```bash FindSessions /i="MyInstallation" /m="firefly-sf" /export="UnixInputOutput" /path="C:\\Temp\\Output" ``` -------------------------------- ### Install-RabbitMQ Cmdlet Help Source: https://docs.delinea.com/online-help/rabbitmq-helper/powershell-cmdlets/install-rabbitmq.htm This block displays the help information for the Install-RabbitMQ cmdlet, including its name, synopsis, syntax, description, parameters, and examples. Use this cmdlet to install RabbitMQ on your system. ```powershell NAME Install-RabbitMq SYNOPSIS Installs RabbitMq SYNTAX Install-RabbitMq [-InstallPath ] [] DESCRIPTION The Install-RabbitMq cmdlet will attempt to load the installed from Path.Combine(Path.GetTempPath(), "rabbitMq.exe"); PARAMETERS -InstallPath Allows you to specify the path of the RabbitMQ installation. If a path is not provided, the default path from InstallConfig.json is used. This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see  about_CommonParameters (https:/go.microsoft.com/fwlink/?LinkID=113216).  ----------  EXAMPLE 1  ---------- PS C:\>Install-RabbitMq REMARKS To see the examples, type: "get-help Install-RabbitMq -examples". For more information, type: "get-help Install-RabbitMq -detailed". For technical information, type: "get-help Install-RabbitMq -full". For online help, type: "get-help Install-RabbitMq -online" ``` -------------------------------- ### Get Audit Roles for an Installation Source: https://docs.delinea.com/online-help/server-suite/dev/powershell/audit-powershell/manage/index.htm Identify the installation object before calling Get-CdaAuditRole to retrieve all audit roles within that installation. ```powershell $site = Get-CdaInstallation -Name "production" Get-CdaAuditRole $site ``` -------------------------------- ### Get Audit Installation Name Source: https://docs.delinea.com/online-help/server-suite/auditing/manage-db/audit-object-reference/installation-class.htm Retrieves the name of the audit installation. The installation name is set during creation and typically remains constant. ```VBScript String Name {get;} ``` -------------------------------- ### Run Setup Utility (Default Encryption) Source: https://docs.delinea.com/online-help/integrations/jdbc-driver/run-setup-utility.htm Execute this command to run the Setup Utility with default AES-GCM encryption. This mode generates a hardware-based encryption key secured with SHA-256 hashing for system-specific data protection. ```bash java -jar SetUpUtility.jar ``` -------------------------------- ### Get Zone Type Example Source: https://docs.delinea.com/online-help/server-suite/dev/adedit/commandreference/get_zone_field.htm This example demonstrates how to retrieve the type of the currently selected zone. ```text get_zone_field type tree ``` -------------------------------- ### Example Self-Serve Adjoin Command Source: https://docs.delinea.com/online-help/server-suite/admin/admin-linux-unix/computers/joining-a-domain.htm This example shows how to join a specific domain using the self-serve option, assuming the computer account is already prepared in Active Directory. ```bash adjoin --selfserve cendura.org ``` -------------------------------- ### Get Official RabbitMQ and Erlang Installer Download Locations (Non-Mirror) Source: https://docs.delinea.com/online-help/rabbitmq-helper/installation/installtls-offline.htm Use this command to obtain the official CDN mirror download locations for the RabbitMQ and Erlang installers. This ensures you get the primary source for the files. ```powershell #To get the official CND mirror download location, run the following command: Get-DownloadLocations -UseNonMirror ``` -------------------------------- ### Example gMSA and Keytab Configuration Source: https://docs.delinea.com/online-help/server-suite/configuration/config-guide/adclient/adclient-gmsa.htm This example demonstrates how to configure a specific gMSA named 'serviceXYZ' and its corresponding keytab file location. ```text adclient.gmsa: serviceXYZ serviceXYZ.krb5.keytab: /some/secure/location/serviceXYZ.keytab ``` -------------------------------- ### Run Delinea Licensing Service Installer Source: https://docs.delinea.com/online-help/server-suite/install/licensing/license-tools.htm Execute this command to start the standalone installation of the Delinea Licensing Service. This is useful if the service was not installed with Server Suite. ```bash Centrify_Licensing_Service-x.x.x-win64.msi ```