Finding Change Auditor installations and coordinators
Find-CAInstallations
Example: Find all Change Auditor installations in DomainName.com Find-CAInstallations –DomainName ‘DomainName.com’
Find-CACoordinators
Example: Find all available coordinators in DomainName.com Find-CACoordinators -DomainName 'DomainName.com'
Find-CASuitableCoordinator
Table 6. Available parameters
Example: Find a coordinator in ‘DEFAULT’ installation that you have the credentials to connect to Find-CASuitableCoordinator –InstallationName ‘DEFAULT’
Example: Find a coordinator in Domain that you have the credentials to connect to, when using certificate authentication $connection = Connect-CAClient -Credential $creds
Find-CASuitableCoordinator -Credential $creds -DomainName ‘DomainName.com'
Connecting to and disconnecting from Change Auditor installations and coordinators
Connect-CAClient
Table 7. Available parameters
Disconnect-CAClient
Example: Connect to a Change Auditor deployment, and then close the connection
Importing and exporting configuration settings
Import-CAConfigurations
Use this command to import Change Auditor configuration settings.
Table 9. Available parameters
Example: Importing configuration settings $connection = Connect-CAClient -Credential $creds
[xml] $xmld = Get-Content 'C:\DataFolder\CAConfig.xml'
Import-CAConfigurations -Connection $connection -ConfigurationSettings $xmld
Export-CAConfigurations
Use this command to export Change Auditor configuration settings.
Table 10. Available parameters
A connection obtained by using the Connect-CAClient command.
Example: Exporting Change Auditor configuration settings $connection = Connect-CAClient -Credential $creds
Managing client authentication options
Change Auditor has two authentication method:
When users log in, they must enter a Windows user account and a password.
These commands allow you to manage the authentication used in your Change Auditor deployment.
Get-CAAuthenticationOptions
Returns: An object containing the options for authentication for the specified installation.
Table 11. Available parameters
A connection obtained by using the Connect-CAClient command.
The name of the domain where the Change Auditor installation exists.
Example Get-CAAuthenticationOptions –InstallationName ‘DEFAULT’ –DomainName ‘DomainName.com’
Get-CAAuthenticationOptions -Connection $connection
Set-CAAuthenticationOptions
Returns: An object containing the options for authentication for the specified installation.
Table 12. Available parameters
A connection obtained by using the Connect-CAClient command.
When specified, instructs the coordinator to accept default username/password style of credentials.
Example Set-CAAuthenticationOptions -Connection $connection -AuthenticationOptions $AuthenticationOptions