StartPIBackup.Include Property
- Last UpdatedDec 15, 2025
- 2 minute read
Components to include in the PI Backup. If none are specified explicitly, all will be backed up.
To get a list of possible components to include, 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 = 5, Mandatory = false, HelpMessage = "Component list to backup")] public string[] Include { get; set; }
<ParameterAttribute(Position := 5, Mandatory := false, HelpMessage := "Component list to backup")> Public Property Include As String() Get Set Dim instance As StartPIBackup Dim value As String() value = instance.Include instance.Include = value
public: [ParameterAttribute(Position = 5, Mandatory = false, HelpMessage = L"Component list to backup")] property array<String^>^ Include { array<String^>^ get (); void set (array<String^>^ value); }
[<ParameterAttribute(Position = 5, Mandatory = false, HelpMessage = "Component list to backup")>] member Include : string[] with get, set