Skip to content

Instantly share code, notes, and snippets.

View PeterWxin's full-sized avatar

PeterWxin

  • Shanghai
View GitHub Profile
@patrick138
patrick138 / PS_AddUsersToTeams
Last active April 25, 2021 00:26
Add users from text file or csv to a Microsoft Teams site
$path='d:\email.txt'
$GroupId=<groupid>
Import-Csv $path | % {
Add-TeamUser -User $_.Name -GroupId $GroupId
}