Public/Teams/Channel/Get-TeamsChannel.ps1
function Get-TeamsChannel { [CmdletBinding()] param ( [Parameter(Mandatory = $true)][string]$Name # Give the channel a name, this is the "identifier for this channel" ) begin { } process { # Check if the telegram channel exists $channel = $null Get-Channel -Name $Name | Where-Object { $_.Type -eq "Teams" } | ForEach-Object { $channel = $_ } If ( $channel -eq $null ) { throw "Channel $( $Name ) not found!" } $channel } end { } } |