SYNOPSIS
Get Progress and Performance Statistics.
SYNTAX
Get-ASProgressStatistics [-Core] <ConnectCore> [-StatisticsType] <StatisticsTypeEnum>-LinkId] [<Guid?> [<CommonParameters>]
DESCRIPTION
The Get-ASProgressStatistics will return progress and performance based on defined parameters. 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-ASProgressStatistics -StatisticsType BasicStatistics Get-ASProgressStatistics -StatisticsType OverallPerformance |
/* Retrieves all Basic Statistics */ /* Retrieves all Overall Performance Statistics */ |
Get-ASProgressStatistics -StatisticsType BasicStatistics -LinkId e438fb86-4574-490a-8bc4-4d3ec58c65be Get-ASProgressStatistics -StatisticsType OverallPerformance -LinkId e438fb86-4574-490a-8bc4-4d3ec58c65be |
/* Retrieves Basic Statistics for particular link */ /* Retrieves Overall Performance Statistics for particular link */ |
Get-ASProgressStatistics -StatisticsType OverallPerformance -LinkId e438fb86-4574-490a-8bc4-4d3ec58c65be | Select-object -Property *Size* |
/* Retrieves Overall Performance Statistics for particular link and returns only size statistics for it */ |
SYNOPSIS
Add the PST source for link.
SYNTAX
Add-ASPstSourcePath [-Core] <ConnectCore> [-LinkId] <Guid> [-ModuleId] <Guid> [-Path] <string> [<CommonParameters>]
DESCRIPTION
The Add-ASPstSourcePath cmdlet adds PST source for PST link. After the command is executed, the result can be checked in the Archive Shuttle user interface. All parameters in the cmdlet are 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:
Add-ASPstSourcePath -LinkId "dab5f4a9-263c-e611-813b-005056b84ed8" -ModuleId "249170e0-253c-e611-813b-005056b84ed8" -Path "UNCPath" |
|
$link = Get-ASLink -Type PST |Where-Object {$_.LinkName -eq "PSTSource"} $pstexportmodule = Get-ASModule -ModuleType PstExport |Where-Object {$_.ComputerName -eq "ComputerName1"} Add-ASPstSourcePath -Path "\\UNCPath" -LinkId $link.LinkID -ModuleId $pstexportmodule.ModuleId |
|
SYNOPSIS
Remove the PST source for link.
SYNTAX
Remove-ASPstSourcePath [-Core] <ConnectCore> [-PstDirectoryId] <int[]> [<CommonParameters>]
DESCRIPTION
The Remove-ASPstSourcePath cmdlet deletes PST source for PST link. After the command is executed, the result can be checked in the Archive Shuttle user interface. All parameters in the cmdlet are 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:
Remove-ASPstSourcePath -PstDirectoryId "1" |
/* Removes record from [ArchiveShuttleDirectory].[dbo].[PstDirectory] table */ |
SYNOPSIS
Set the PST source for link.
SYNTAX
Set-ASPstSourcePath [-Core] <ConnectCore> [-PstDirectoryId] <int[]> [-Path] <string> [<CommonParameters>]
DESCRIPTION
The Set-ASPstSourcePath cmdlet set PST source for PST link. After the command is executed, the result can be checked in the Archive Shuttle user interface. All parameters in the cmdlet are 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:
Set-ASPstSourcePath -PstDirectoryId "1" -Path "\\UNCPath" |
/* Currently, it is possible to only change the path of existing PST directory record (LinkId or ModuleId not supported) */ |
© 2024 Quest Software Inc. ALL RIGHTS RESERVED. 使用条款 隐私 Cookie Preference Center