GetPIBufferPointError Class
- Last UpdatedDec 15, 2025
- 3 minute read
Get point errors for a PI Buffer Subsystem
The Get-PIBufferPointError cmdlet gets all points currently in error since PI Buffer Subsystem started. This cmdlet can only be directly run against the local instance of PI Buffer Subsystem.
This cmdlet can be run against remote PI Buffer Subsystems by leveraging PowerShell Remoting.
Inheritance Hierarchy
InternalCommand
Cmdlet
PSCmdlet
OSIsoft.PowerShellOSICmdletBase
OSIsoft.PowerShellGetPIBufferPointError
Namespace: OSIsoft.PowerShell
Assembly: OSIsoft.PowerShell (in OSIsoft.PowerShell.dll) Version: 3.1.1.0 (3.1.1.466)
Syntax
[CmdletAttribute("Get", "PIBufferPointError", SupportsShouldProcess = true)] public class GetPIBufferPointError : OSICmdletBase
<CmdletAttribute("Get", "PIBufferPointError", SupportsShouldProcess := true)> Public Class GetPIBufferPointError Inherits OSICmdletBase Dim instance As GetPIBufferPointError
[CmdletAttribute(L"Get", L"PIBufferPointError", SupportsShouldProcess = true)] public ref class GetPIBufferPointError : public OSICmdletBase
[<CmdletAttribute("Get", "PIBufferPointError", SupportsShouldProcess = true)>] type GetPIBufferPointError = class inherit OSICmdletBase end
The GetPIBufferPointError type exposes the following members.
Constructors
| Name | Description | |
|---|---|---|
| GetPIBufferPointError |
Examples
Get-PIBufferPointError
Gets all points in error since the start of PI Buffer Subsystem on the local instance.
Examples
Invoke-Command -ComputerName PIINT1 -ScriptBlock { Get-PIBufferPointError }Gets all points in error since the start of PI Buffer Subsystem on the PIINT1 instance. Failure of this example to execute properly is likely not an issue with Get-PIBufferPointError, but with the network or PS connection to the remote computer. Note that the OSIsoft.PowerShell module must be installed on the remote computer as well for this to work.
Examples
$PointErrors.PhysicalServersPointErrors.Values.PointErrors
Where:
$PointErrors = Get-PIBufferPointError
Outputs all point errors for the local PI Buffer Subsystem instance.