function Get-KnownSkipWebAppNames { <# .SYNOPSIS There are a set of WebApps we should skip for certain actions, like ExceptionService This returns that list .NOTES Adding a value to this will prevent it being installed in New-AppTierWebApplications Adding a value to this list will prevent it being tested in Test-KnownWCFServicesResolvable Adding a value to this list is considered deprecation of this web app for systemwide-generic invocations, but not for specific commands that target the named webapps #> [CmdletBinding()] [OutputType([string[]])] param() return @('ExceptionService') }