Adding the PowerShell module
Viewing available commands and help
Get-Command -Module ChangeAuditor.PowerShell
Installing Change Auditor coordinators and web clients
The following commands allow you to install Change Auditor components.
Install-CACoordinator
Use this command to install locally a Change Auditor Coordinator.
Example: Perform a local installation of a Change Auditor coordinator Install-CAWebClient
Use this command to install locally the web client.
Table 2. Available parameters
The local path on the computer where the installation log is written.
The location to find the web client MSI file. The web client is installed using this installer.
A unique port for the web site to avoid conflicts with other IIS applications (for example, SharePoint® uses the default port 80; therefore, the IIS web site for the Change Auditor web client must use a different port). If a conflicting port is specified, attempting to launch the web client displays either an ‘HTTP 404 Not Found’ or ‘Page cannot be displayed’ error.
Example: Install a web client Install-CALicense
Use this command to install licenses to the coordinators in a Change Auditor installation.
Table 3. Available parameters
A connection obtained by using the Connect-CAClient command.
The single coordinator where you want to install the license (rather than all coordinators).
Example: Install a Change Auditor license in Installation domain, when using certificate authentication $connection = Connect-CAClient -credential $creds
$coordinatorToLicense = Get-CACoordinators -Connection $connection
Install-CALicense $connection –LicensePath 'c:\ChangeAuditor.dlv'
Example: Install license to single coordinator in the Installation which is installed on the local system, when using certificate authentication $connection = Connect-CAClient -SelectLocalCoordinator -credential $creds
$coordinatorToLicense = Get-CACoordinator -Connection $connection
Example: Install a Change Auditor for Active Directory license Install-CALicense $connection –LicensePath C:\7_0_AD_license_PER.dlv
Example: Install license to single coordinator in the Installation which is installed on the local system $connection = Connect-CAClient -SelectLocalCoordinator
$coordinatorToLicense = Get-CACoordinator -Connection $connection
Setting the master time zone
Set-CAScheduleMasterTimeZone
Table 4. Available parameters
A connection obtained by using the Connect-CAClient command.
Example: Set the schedule master time zone with a time zone info object $atlanticTime = [System.TimeZoneInfo]::GetSystemTimeZones() |? {$_.Id -eq "Atlantic Standard Time"}
Set-CAScheduleMasterTimeZone -Connection $connection -TimeZoneInfo $atlanticTime
Example: Set the schedule master time zone with a time zone identifier
Set-CAScheduleMasterTimeZone -Connection $connection -TimeZoneId "Eastern Standard Time"
Get-CAScheduleMasterTimeZone
Table 5. Available parameters
A connection obtained by using the Connect-CAClient command.
Example: Retrieve the schedules master time zone