StartPIBackup.BackupLocation Property
- Last UpdatedDec 15, 2025
- 2 minute read
Backup location for the PI Backup
Namespace: OSIsoft.PowerShell
Assembly: OSIsoft.PowerShell (in OSIsoft.PowerShell.dll) Version: 2.2.3.0 (2.2.3.952)
Syntax
[ParameterAttribute(Position = 0, Mandatory = true, HelpMessage = "Location to backup the PI Data Archive to")] [AliasAttribute(new string[] { ... })] [ValidateNotNullOrEmptyAttribute] public string BackupLocation { get; set; }
<ParameterAttribute(Position := 0, Mandatory := true, HelpMessage := "Location to backup the PI Data Archive to")> <AliasAttribute(New String() { ... })> <ValidateNotNullOrEmptyAttribute> Public Property BackupLocation As String Get Set Dim instance As StartPIBackup Dim value As String value = instance.BackupLocation instance.BackupLocation = value
public: [ParameterAttribute(Position = 0, Mandatory = true, HelpMessage = L"Location to backup the PI Data Archive to")] [AliasAttribute(__gc new array<String^>^ { ... })] [ValidateNotNullOrEmptyAttribute] property String^ BackupLocation { String^ get (); void set (String^ value); }
[<ParameterAttribute(Position = 0, Mandatory = true, HelpMessage = "Location to backup the PI Data Archive to")>] [<AliasAttribute(new string[] { ... })>] [<ValidateNotNullOrEmptyAttribute>] member BackupLocation : string with get, set