Skip to content

Instantly share code, notes, and snippets.

View patrick138's full-sized avatar

Patrick Mandemaker patrick138

  • Microsoft
  • The Netherlands
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
}