functions/Test-DbaLinkedServerConnection.ps1
function Test-DbaLinkedServerConnection { <# .SYNOPSIS Test all linked servers from the sql servers passed .DESCRIPTION Test each linked server on the instance .PARAMETER SqlInstance The SQL Server that you're connecting to. .PARAMETER SqlCredential Credential object used to connect to the SQL Server as a different user .PARAMETER Silent Use this switch to disable any kind of verbose messages .NOTES Author: Thomas LaRock ( https://thomaslarock.com ) dbatools PowerShell module (https://dbatools.io) Copyright (C) 2017 Chrissy LeMaire This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. .LINK https://dbatools.io/Test-DbaLinkedServerConnection .EXAMPLE Test-DbaLinkedServerConnection -SqlInstance DEV01 Test all Linked Servers for the SQL Server instance DEV01 .EXAMPLE Test-DbaLinkedServerConnection -SqlInstance sql2016 | Out-File C:\temp\results.txt Test all Linked Servers for the SQL Server instance sql2016 and output results to file .EXAMPLE Test-DbaLinkedServerConnection -SqlInstance sql2016, sql2014, sql2012 Test all Linked Servers for the SQL Server instances sql2016, sql2014 and sql2012 .EXAMPLE $servers = "sql2016","sql2014","sql2012" $servers | Test-DbaLinkedServerConnection -SqlCredential (Get-Credential sqladmin) Test all Linked Servers for the SQL Server instances sql2016, sql2014 and sql2012 using SQL login credentials .EXAMPLE $servers | Get-DbaLinkedServer | Test-DbaLinkedServerConnection Test all Linked Servers for the SQL Server instances sql2016, sql2014 and sql2012 #> [CmdletBinding()] param ( [Parameter(Mandatory, ValueFromPipeline)] [Alias("ServerInstance", "SqlServer")] [object[]] $SqlInstance, [System.Management.Automation.PSCredential] $SqlCredential, [switch] $Silent ) begin { } process { foreach ($instance in $SqlInstance) { if ($Instance.LinkedLive) { $LinkedServerCollection = $Instance.LinkedServer } else { try { Write-Message -Level Verbose -Message "Connecting to $instance" $server = Connect-SqlInstance -SqlInstance $instance -SqlCredential $sqlcredential $LinkedServerCollection = $server.LinkedServers } catch { Stop-Function -Message "Failure" -Category ConnectionError -ErrorRecord $_ -Target $instance -Continue } } foreach ($ls in $LinkedServerCollection) { Write-Message -Level Verbose -Message "Testing linked server $($ls.name) on server $($ls.parent.name)" try { $null = $ls.TestConnection() $result = "Success" $connectivity = $true } catch { $result = $_.Exception.InnerException.InnerException.Message $connectivity = $false } New-Object Sqlcollaborative.Dbatools.Validation.LinkedServerResult($ls.parent.NetName, $ls.parent.ServiceName, $ls.parent.DomainInstanceName, $ls.Name, $ls.DataSource, $connectivity, $result) } } } end { } } |