Hi @Rising Flight
Use the Add-TeamChannelUser cmdlet, or the corresponding Graph API endpoint: https://learn.microsoft.com/en-us/powershell/module/teams/add-teamchanneluser?view=teams-ps Here's a quick example on how to bulk add via CSV:
Copy
Import-Csv "blabla.csv” | % {Add-TeamChannelUser -GroupId GUID -DisplayName "channel name" -User $_.UPN}
where the CSV has a column called "UPN" to designate the users
If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.