GetPIArchiveReprocessQueue Class
- Last UpdatedDec 15, 2025
- 3 minute read
Get the current PI Reprocess Archive queue
The Get-PIArchiveReprocessQueue cmdlet returns the queued reprocess tasks waiting to be executed on the PI Data Archive server.
Note that this cmdlet will only return total number of online reprocess requests queued via online archive reprocessing. If there are no queued reprocess requests, this cmdlet will return nothing.
The connection parameter specifies which connection to a PI Data Archive to use.
Inheritance Hierarchy
InternalCommand
Cmdlet
PSCmdlet
OSIsoft.PowerShellOSICmdletBase
OSIsoft.PowerShellGetPIArchiveReprocessQueue
Namespace: OSIsoft.PowerShell
Assembly: OSIsoft.PowerShell (in OSIsoft.PowerShell.dll) Version: 2.2.3.0 (2.2.3.952)
Syntax
[CmdletAttribute("Get", "PIArchiveReprocessQueue", SupportsShouldProcess = true)] public class GetPIArchiveReprocessQueue : OSICmdletBase
<CmdletAttribute("Get", "PIArchiveReprocessQueue", SupportsShouldProcess := true)> Public Class GetPIArchiveReprocessQueue Inherits OSICmdletBase Dim instance As GetPIArchiveReprocessQueue
[CmdletAttribute(L"Get", L"PIArchiveReprocessQueue", SupportsShouldProcess = true)] public ref class GetPIArchiveReprocessQueue : public OSICmdletBase
[<CmdletAttribute("Get", "PIArchiveReprocessQueue", SupportsShouldProcess = true)>] type GetPIArchiveReprocessQueue = class inherit OSICmdletBase end
The GetPIArchiveReprocessQueue type exposes the following members.
Constructors
| Name | Description | |
|---|---|---|
| GetPIArchiveReprocessQueue |
Properties
| Name | Description | |
|---|---|---|
| Connection | Connection to a PI Data Archive from which to retrieve queued reprocess requests |
Examples
Get-PIArchiveReprocessQueue -Connection (Connect-PIDataArchive -PIDataArchiveMachineName "PISRV1")Gets the current queued PI Archive Reprocess requests from the "PISRV1" PI Data Archive.
Examples
Get-PIArchiveQueue -Connection $con
Where:
$con = Connect-PIDataArchive -PIDataArchiveMachineName "PISRV1"
Gets the current queued PI Archive Reprocess requests from the "PISRV1" PI Data Archive.