The Uninstall-Moduleaccepts the RequiredVersion parameter, this allows to uninstall a specific version. This is useful in case that we need to check if a previous version had a different behavior. To load a specific version we need to use the RequiredVersion parameter: Import-Module MicrosoftTeams -RequiredVersion x.x.x Note: If empty it means that the MicrosoftTeam PowerShell module isn’t loaded. We can run the following PowerShell cmdlet, to confirm the module version that is currently loaded: Get-Module MicrosoftTeams To list all installed versions we need to use the ListAvailable parameter: Get-Module -ListAvailable MicrosoftTeamsīy default, the module loaded with Import-Module MicrosoftTeams or Connect-MicrosoftTeams will be the latest installed version. However, it is also possible to install, load and remove previous versions. Install Microsoft Teams PowerShell Module As most of us know, the steps to install and update the Microsoft Teams Powerhell Module are described here: