GetPIBufferLastConfigurationLoadTime Class
- Last UpdatedDec 15, 2025
- 3 minute read
Get the last buffer configuration load time
The Get-PIBufferLastConfigurationLoadTime cmdlet gets the last time the local instance of PI Buffer Subsystem at which the buffer configuration was loaded. 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.PowerShellGetPIBufferLastConfigurationLoadTime
Namespace: OSIsoft.PowerShell
Assembly: OSIsoft.PowerShell (in OSIsoft.PowerShell.dll) Version: 2.2.3.0 (2.2.3.952)
Syntax
[CmdletAttribute("Get", "PIBufferLastConfigurationLoadTime", SupportsShouldProcess = true)] public class GetPIBufferLastConfigurationLoadTime : OSICmdletBase
<CmdletAttribute("Get", "PIBufferLastConfigurationLoadTime", SupportsShouldProcess := true)> Public Class GetPIBufferLastConfigurationLoadTime Inherits OSICmdletBase Dim instance As GetPIBufferLastConfigurationLoadTime
[CmdletAttribute(L"Get", L"PIBufferLastConfigurationLoadTime", SupportsShouldProcess = true)] public ref class GetPIBufferLastConfigurationLoadTime : public OSICmdletBase
[<CmdletAttribute("Get", "PIBufferLastConfigurationLoadTime", SupportsShouldProcess = true)>] type GetPIBufferLastConfigurationLoadTime = class inherit OSICmdletBase end
The GetPIBufferLastConfigurationLoadTime type exposes the following members.
Constructors
| Name | Description | |
|---|---|---|
| GetPIBufferLastConfigurationLoadTime |
Examples
Get-PIBufferLastConfigurationLoadTime
Gets the last time which the local instance of PI Buffer Subsystem loaded its configuration. Failure of this example to execute properly is likely not an issue with Get-PIBufferSession, 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
Invoke-Command -ComputerName PIINT1 -ScriptBlock { Get-PIBufferLastConfigurationLoadTime }Gets the last time which the PIINT1 instance of PI Buffer Subsystem loaded its configuration.
Note the use of Invoke-Command.Failure of this example to execute properly is likely not an issue with Get-PIBufferLastConfigurationLoadTime, 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.