Server.BrowserServiceAccount Property
Gets the service account that the Browser service runs under on the instance of SQL Server.
Assembly: Microsoft.SqlServer.Smo (in Microsoft.SqlServer.Smo.dll)
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
Show: