다음을 통해 공유


BrowserServiceAccount 속성

SQL Server 인스턴스에서 Browser 서비스가 실행되는 서비스 계정을 가져옵니다.

네임스페이스:  Microsoft.SqlServer.Management.Smo
어셈블리:  Microsoft.SqlServer.Smo(Microsoft.SqlServer.Smo.dll)

구문

‘선언
<SfcPropertyAttribute(SfcPropertyFlags.Standalone)> _
Public ReadOnly Property BrowserServiceAccount As String
    Get
‘사용 방법
Dim instance As Server
Dim value As String

value = instance.BrowserServiceAccount
[SfcPropertyAttribute(SfcPropertyFlags.Standalone)]
public string BrowserServiceAccount { get; }
[SfcPropertyAttribute(SfcPropertyFlags::Standalone)]
public:
property String^ BrowserServiceAccount {
    String^ get ();
}
[<SfcPropertyAttribute(SfcPropertyFlags.Standalone)>]
member BrowserServiceAccount : string
function get BrowserServiceAccount () : String

속성 값

유형: System. . :: . .String
SQL Server 인스턴스의 SQL Server Browser 서비스 계정을 지정하는 String 개체입니다.

주의

SQL Server Browser provides SQL Server connection information to client computers and is shared across multiple SQL Server and Integration Services instances.

C#

Server srv = new Server("(local)");
Console.WriteLine("The browser service account is " + srv.BrowserServiceAccount);

PowerShell

$srv = new-Object Microsoft.SqlServer.Management.Smo.Server("(local)")
Write-Host "The browser service account is" $srv.BrowserServiceAccount