SYNOPSIS
Start AD domains synchronization.
SYNTAX
Start-ASSyncADDomains -Core <ConnectCore> [<CommonParameters>]
DESCRIPTION
The Start-ASSyncADDomains starts synchronization of Active Directory domains. Core parameter in the cmdlet is mandatory. You can specify core as a parameter, or call Connect-ASCore once and the core parameter will be automatically added from the session state.
SYNOPSIS
Gets Exchange Servers.
SYNTAX
Get-ASExchangeServer -Core <ConnectCore> [-ADContainerId [<int[]>]] [<CommonParameters>]
DESCRIPTION
The Get-ASExchangeServer returns Exchange servers. Core parameter in the cmdlet is mandatory. You can specify core as a parameter, or call Connect-ASCore once and the core parameter will be automatically added from the session state.
Example:
Get-ASExchangeServer |
|
---|---|
Get-ASExchangeServer -ADContainerId 2 |
/* As of Archive Shuttle 7.7, it is possible to define only the ADContainerId parameter. This is a custom command for ADAM, and in case other parameters are required, it should be logged in TFS */ |
Get-ASExchangeServer|Format-Table ExchangeServerId,AdContainerId,Name,FullyQualifiedDomainName -AutoSize |
|
Get-ASExchangeServer | Where-Object {$_.ExchangeServerId -eq "1"} |
|
SYNOPSIS
Gets Exchange databases.
SYNTAX
Get-ASExchangeDatabase -Core <ConnectCore> [-ExchangeServerId [<int[]>]] [<CommonParameters>]
DESCRIPTION
The Get-ASExchangeDatabase return Exchamge databases. Core parameter in the cmdlet is mandatory. You can specify core as a parameter, or call Connect-ASCore once and the core parameter will be automatically added from the session state.
Example:
Get-ASExchangeDatabase -ExchangeServerId 1 |
/* As of Archive Shuttle 7.7, it is possible to define only ExchangeServerId parameter. This is a custom command for ADAM, and in case other parameters are required, it should be logged in TFS */ |
Get-ASExchangeServer | Where-Object {$_.ExchangeServerId -eq "1"} | Get-ASExchangeDatabase | Format-Table ExchangeServerId,Name,DistinguishedName -AutoSize |
|
SYNOPSIS
Creates a new environment.
SYNTAX
Add-ASEnvironment [-Core] <ConnectCore> [-EnvironmentType] <ContainerTypeEnvironmentEnum> [-ModuleId] <Guid> [-DisplayName] <string> [-SqlServer] <string> [-SqlDatabaseName] <string> [[-SqlTableSchema] <string>] [[-LinkSqlServer] <string>] [[-BasePaths] <string>]
[-WebServerUrl] <string> [<CommonParameters>]
DESCRIPTION
The Add-ASEnvironment cmdlet creates a new environment. After the command is executed, the environment can be checked in the Archive Shuttle user interface. You can specify core as a parameter, or call Connect-ASCore once and core parameter will be automatically added from session state.
Parameters (M)EnvironmentType, (V)ModuleId, (V)DisplayName, (V)SqlServer, (V)SqlDatabaseName are common for all containers. Other parameters depends on environment type:
·For type DellArchiveManager: (V)LinkSqlServer.
·For type SourceOne: (V)LinkSqlServer, (V)BasePaths.
·For type EasDynamicParameters: (V)SqlTableSchema, (V)LinkSqlServer, (V)WebServerUrl.
NOTE: Some parameters are dynamically added/removed (based on EnvironmentType) |
Example:
Add-ASEnvironment -EnvironmentType EnterpriseVault -DisplayName "Enterprise Vault 12" -ModuleId "434b9603-1ab9-e511-80e6-005056b82cc9" -SqlServer "SQLSERVER01\INSTANCE1" -SqlDatabaseName "EnterpriseVaultDirectory" |
|
$evcolmodule = Get-ASModule -ModuleType EVCollector | Where-Object {$_.ComputerName -eq "Computer01"}
Add-ASEnvironment -EnvironmentType EnterpriseVault -DisplayName "Enterprise Vault 12" -ModuleId $evcolmodule.ModuleId -SqlServer "SQLSERVER01\INSTANCE1" -SqlDatabaseName "EnterpriseVaultDirectory" |
|
© ALL RIGHTS RESERVED. 이용 약관 개인정보 보호정책 Cookie Preference Center