Skip to content

Instantly share code, notes, and snippets.

@JSHooper
Last active July 16, 2020 22:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JSHooper/d505a785c2a59a9e268cc19f943c939b to your computer and use it in GitHub Desktop.
Save JSHooper/d505a785c2a59a9e268cc19f943c939b to your computer and use it in GitHub Desktop.
# 1. Find out what version of the module you have installed
Get-Module MicrosoftTeams -ListAvailable
# 2. Update to the latest version of the module
Update-Module MicrosoftTeams
# 3. Check the module has been updated
Get-Module MicrosoftTeams -ListAvailable
# 4. if like me you dont like the old module hanging around
# run the following replacing {Insert old version here} with your old version number
Uninstall-Module MicrosoftTeams -RequiredVersion {Insert old version here}
#5. Check the old module version has been removed
Get-Module MicrosoftTeams -ListAvailable
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment