AddAFServer.Account Property
- Last UpdatedDec 15, 2025
- 2 minute read
Service account name that the AF Server is executing under
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 = "Security Account under which AF is running.")] [ValidateNotNullOrEmptyAttribute] public string Account { get; set; }
<ParameterAttribute(Position := 5, Mandatory := false, HelpMessage := "Security Account under which AF is running.")> <ValidateNotNullOrEmptyAttribute> Public Property Account As String Get Set Dim instance As AddAFServer Dim value As String value = instance.Account instance.Account = value
public: [ParameterAttribute(Position = 5, Mandatory = false, HelpMessage = L"Security Account under which AF is running.")] [ValidateNotNullOrEmptyAttribute] property String^ Account { String^ get (); void set (String^ value); }
[<ParameterAttribute(Position = 5, Mandatory = false, HelpMessage = "Security Account under which AF is running.")>] [<ValidateNotNullOrEmptyAttribute>] member Account : string with get, set