functions/Get-DbaCustomError.ps1
FUNCTION Get-DbaCustomError { <# .SYNOPSIS Gets SQL Custom Error Message information for each instance(s) of SQL Server. .DESCRIPTION The Get-DbaCustomError command gets SQL Custom Error Message information for each instance(s) of SQL Server. .PARAMETER SqlInstance SQL Server name or SMO object representing the SQL Server to connect to. This can be a collection and recieve pipeline input to allow the function to be executed against multiple SQL Server instances. .PARAMETER SqlCredential SqlCredential object to connect as. If not specified, current Windows login will be used. .NOTES Author: Garry Bargsley (@gbargsley), http://blog.garrybargsley.com dbatools PowerShell module (https://dbatools.io, clemaire@gmail.com) Copyright (C) 2016 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/>. 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/Get-DbaCustomError .EXAMPLE Get-DbaCustomError -SqlInstance localhost Returns all Custom Error Message(s) on the local default SQL Server instance .EXAMPLE Get-DbaCustomError -SqlInstance localhost, sql2016 Returns all Custom Error Message(s) for the local and sql2016 SQL Server instances #> [CmdletBinding()] Param ( [parameter(Position = 0, Mandatory = $true, ValueFromPipeline = $True)] [object]$SqlInstance, [System.Management.Automation.PSCredential]$SqlCredential ) PROCESS { foreach ($instance in $SqlInstance) { Write-Verbose "Attempting to connect to $instance" try { $server = Connect-SqlServer -SqlServer $instance -SqlCredential $SqlCredential } catch { Write-Warning "Can't connect to $instance or access denied. Skipping." continue } foreach ($customError in $server.UserDefinedMessages) { Add-Member -InputObject $customError -MemberType NoteProperty ComputerName -value $customError.Parent.NetName Add-Member -InputObject $customError -MemberType NoteProperty InstanceName -value $customError.Parent.ServiceName Add-Member -InputObject $customError -MemberType NoteProperty SqlInstance -value $customError.Parent.DomainInstanceName Select-DefaultView -InputObject $customError -Property ComputerName, InstanceName, SqlInstance, ID, Text, LanguageID, Language } } } } |