GetPIUpdateManagerStatistics Class
- Last UpdatedDec 15, 2025
- 3 minute read
Get Global PI Update Manager statistics for a PI Data Archive
The Get-PIUpdateManagerStatistics cmdlet gets the global update manager statistics for a PI Data Archive server
The connection parameter specifies which connection to a PI Data Archive to use.
Inheritance Hierarchy
InternalCommand
Cmdlet
PSCmdlet
OSIsoft.PowerShellOSICmdletBase
OSIsoft.PowerShellOSICmdletBaseWithConnection
OSIsoft.PowerShellGetPIUpdateManagerStatistics
Namespace: OSIsoft.PowerShell
Assembly: OSIsoft.PowerShell (in OSIsoft.PowerShell.dll) Version: 3.1.1.0 (3.1.1.466)
Syntax
[CmdletAttribute("Get", "PIUpdateManagerStatistics", SupportsShouldProcess = true)] public class GetPIUpdateManagerStatistics : OSICmdletBaseWithConnection
<CmdletAttribute("Get", "PIUpdateManagerStatistics", SupportsShouldProcess := true)> Public Class GetPIUpdateManagerStatistics Inherits OSICmdletBaseWithConnection Dim instance As GetPIUpdateManagerStatistics
[CmdletAttribute(L"Get", L"PIUpdateManagerStatistics", SupportsShouldProcess = true)] public ref class GetPIUpdateManagerStatistics : public OSICmdletBaseWithConnection
[<CmdletAttribute("Get", "PIUpdateManagerStatistics", SupportsShouldProcess = true)>] type GetPIUpdateManagerStatistics = class inherit OSICmdletBaseWithConnection end
The GetPIUpdateManagerStatistics type exposes the following members.
Constructors
| Name | Description | |
|---|---|---|
| GetPIUpdateManagerStatistics |
Properties
| Name | Description | |
|---|---|---|
| Connection | Connection to a PI Data Archive from which to retrieve global update manager statistics |
Examples
Get-PIUpdateManagerStatistics -Connection $con
Where:
$con = Connect-PIDataArchive -PIDataArchiveMachineName "PISRV1"
Gets the global PI Update Manager signup statistics on the "PISRV1" PI Data Archive server.
Examples
for () { Get-PIUpdateManagerStatistics -Connection $con; Write-Host; Start-Sleep -Seconds 5 }
Where:
$con = Connect-PIDataArchive -PIDataArchiveMachineName "PISRV1"
Gets the PI Update Manager signup statistics on the "PISRV1" PI Data Archive server, and re-outputs the results every 5 seconds/