Server.LinkedServers Property
SQL Server 2012
Represents a collection of LinkedServer objects. Each LinkedServer object represents a linked server registered on the instance of SQL Server.
Namespace: Microsoft.SqlServer.Management.Smo
Assembly: Microsoft.SqlServer.Smo (in Microsoft.SqlServer.Smo.dll)
Property Value
Type: Microsoft.SqlServer.Management.Smo.LinkedServerCollectionA LinkedServerCollection object that represents all the linked servers registered on the instance of SQL Server.
The LinkedServers property points to the LinkedServerCollection object. You can use the collection to reference the linked servers registered on the instance of SQL Server.
Visual Basic
'Connect to the local, default instance of SQL Server. Dim srv As Server srv = New Server 'Display the linked servers. Dim lksv As LinkedServer For Each lksv In srv.LinkedServers Console.WriteLine(lksv.Name)
Next
PowerShell
$srv = new-object Microsoft.SqlServer.Management.Smo.Server("(local)")
foreach ($lksv in $srv.LinkedServers)
{
Write-Host $lksv.Name
}
