AddPIUser.Password Property
- Last UpdatedDec 15, 2025
- 2 minute read
Password for the PI User. This is supplied as a SecureString. ConvertTo-SecureString can be used to convert a String to a SecureString.
Namespace: OSIsoft.PowerShell
Assembly: OSIsoft.PowerShell (in OSIsoft.PowerShell.dll) Version: 2.2.3.0 (2.2.3.952)
Syntax
[ParameterAttribute(Position = 1, Mandatory = false, HelpMessage = "PI User password")] public SecureString Password { get; set; }
<ParameterAttribute(Position := 1, Mandatory := false, HelpMessage := "PI User password")> Public Property Password As SecureString Get Set Dim instance As AddPIUser Dim value As SecureString value = instance.Password instance.Password = value
public: [ParameterAttribute(Position = 1, Mandatory = false, HelpMessage = L"PI User password")] property SecureString^ Password { SecureString^ get (); void set (SecureString^ value); }
[<ParameterAttribute(Position = 1, Mandatory = false, HelpMessage = "PI User password")>] member Password : SecureString with get, set