StopPIBackup Class
- Last UpdatedDec 15, 2025
- 2 minute read
Stop execution of a PI Backup on a PI Data Archive
The Stop-PIBackup cmdlet stops a PI Backup on a PI Data Archive.
The connection parameter specifies which connection to a PI Data Archive to use.
Inheritance Hierarchy
SystemObject
InternalCommand
Cmdlet
PSCmdlet
OSIsoft.PowerShellOSICmdletBase
OSIsoft.PowerShellStopPIBackup
InternalCommand
Cmdlet
PSCmdlet
OSIsoft.PowerShellOSICmdletBase
OSIsoft.PowerShellStopPIBackup
Namespace: OSIsoft.PowerShell
Assembly: OSIsoft.PowerShell (in OSIsoft.PowerShell.dll) Version: 2.2.3.0 (2.2.3.952)
Syntax
[CmdletAttribute("Stop", "PIBackup", SupportsShouldProcess = true)] public class StopPIBackup : OSICmdletBase
<CmdletAttribute("Stop", "PIBackup", SupportsShouldProcess := true)> Public Class StopPIBackup Inherits OSICmdletBase Dim instance As StopPIBackup
[CmdletAttribute(L"Stop", L"PIBackup", SupportsShouldProcess = true)] public ref class StopPIBackup : public OSICmdletBase
[<CmdletAttribute("Stop", "PIBackup", SupportsShouldProcess = true)>] type StopPIBackup = class inherit OSICmdletBase end
The StopPIBackup type exposes the following members.
Constructors
| Name | Description | |
|---|---|---|
| StopPIBackup |
Properties
| Name | Description | |
|---|---|---|
| Connection | Connection to a PI Data Archive from which to stop a PI Backup |
Examples
Stop-PIBackup -Connection (Connect-PIDataArchive -PIDataArchiveMachineName "PISRV1")This example stops a running PI Backup on the "PISRV1" PI Data Archive.
Examples
Stop-PIBackup -Connection $con
Where:
$con = Connect-PIDataArchive -PIDataArchiveMachineName "PISRV1"
This example stops a running PI Backup on the "PISRV1" PI Data Archive.