ps/Modules/Alkami.PowerShell.IIS/Public/Get-KnownWCFServices.ps1

11 lines
207 B
PowerShell
Raw Normal View History

2023-05-30 22:51:22 -07:00
function Get-KnownWCFServices {
<#
.SYNOPSIS
Get the known WCF services from the internal value
#>
[CmdletBinding()]
[OutputType([object[]])]
param()
return $global:appTierApplications
}