Teams_Remove_Channel.ps1

function Teams-RemoveChannel {
    param (
        [string]$GroupId,
        [string]$ChannelId
    )

    Remove-TeamChannel -GroupId $GroupId -ChannelId $ChannelId
}