Retrieves the current encryption options that One Identity Manager uses and indicates whether Data Governance Edition has been configured to use encryption.
Syntax:
Get-QEncryptionOptions [<CommonParameters>]
Example
Table 109: Examples
Get-QEncryptionOptions |
Retrieves the current encryption information. |
Details retrieved
Table 110: Details retrieved
IsDGEConfigured |
Indicates whether Data Governance Edition is configured to use encryption. |
Scheme |
The algorithm currently being used for One Identity Manager encryption. |
Exports all server logs (the DataGovernanceEdition.Service.exe.dlog file and associated agent deployment logs) to the designated folder.
Syntax:
Get-QServerAllLogs -OutputFolder <String> [<CommonParameters>]
Table 111: Parameters
OutputFoler |
Specify the folder where the logs are to be saved.
NOTE: The output folder must already exist on the Data Governance server. |
Examples:
Table 112: Examples
Get-QServerAllLogs -OutputFolder D:\ServerLogs |
Exports all server logs to the designated location (D:\ServerLogs in this example). |
Returns the version of the currently running Data Governance server.
Syntax:
Get-QServerVersion [<CommonParameters>]
Examples:
Table 113: Examples
Get-QServerVersion |
Returns current version of the Data Governance server. |
Details retrieved:
Table 114: Details retrieved
Major |
The major version number. |
Minor |
The minor version number. |
Build |
The build number. |
Revision |
The revision number. |
Initializes a database to store data generated when a managed host has resource activity tracking enabled.
Note: Resource tracking activity is required for several reports, including the Resource Activity report. This database is only for audit information; it is separate from the One Identity Manager database which store configuration and security information.
Syntax:
Initialize-QDataGovernanceActivity [-ConnectionString] <String> [[-Validate] [<SwithParameter>]] [[-ActivityDatabaseIsOracle [<SwitchParameter>]] [<CommonParameters>]
Table 115: Parameters
ConnectionString |
Specify the database connection string used by Data Governance Edition to access the Resource Activity database. |
Validate |
Specify this parameter if you want to the cmdlet to validate the connection string and fail if is in not valid. |
ActivityDatabaseIsOracle |
If you are using an Oracle database management system for the Resource Activity database, specify this parameter to indicate that it is an Oracle database.
NOTE: Oracle Database support was deprecated beginning with One Identity Manager 8.1. Do not use. |
Examples:
Table 116: Examples
Initialize -QDataGovernanceActivity -ConnectionString "Data Source=QAMDB;Initial Catalog=QAMAUDITDB;User ID=sa;Password=template$PWD" -Validate |
Sets the connection string for the Resource Activity database; validating the connection string before proceeding. |