StartPIBackup.Exclude Property
- Last UpdatedDec 15, 2025
- 2 minute read
Components to exclude from the PI Backup
To get a list of possible components to exclude, see example 2 of Get-PIBackupIdentifyReport using "Get-Help Get-PIBackupIdentifyReport -Examples"
Namespace: OSIsoft.PowerShell
Assembly: OSIsoft.PowerShell (in OSIsoft.PowerShell.dll) Version: 3.1.1.0 (3.1.1.466)
Syntax
[ParameterAttribute(Position = 6, Mandatory = false, HelpMessage = "Component list to exclude from backup")] public string[] Exclude { get; set; }
<ParameterAttribute(Position := 6, Mandatory := false, HelpMessage := "Component list to exclude from backup")> Public Property Exclude As String() Get Set Dim instance As StartPIBackup Dim value As String() value = instance.Exclude instance.Exclude = value
public: [ParameterAttribute(Position = 6, Mandatory = false, HelpMessage = L"Component list to exclude from backup")] property array<String^>^ Exclude { array<String^>^ get (); void set (array<String^>^ value); }
[<ParameterAttribute(Position = 6, Mandatory = false, HelpMessage = "Component list to exclude from backup")>] member Exclude : string[] with get, set