Additional features, settings, or issues not covered by specific Microsoft Teams categories
You need to execute Import-Module MicrosoftTeams after Install-Module.
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Hi Team, Please advice am i doing something wrong
PS C:\WINDOWS\system32> find-Module -Name MicrosoftTeams
Version Name Repository Description
------- ---- ---------- -----------
1.0.2 MicrosoftTeams PSGallery Teams Cmdlets module
Installed module using - install-Module -Name MicrosoftTeams.
Getting error when run Connect-MicrosoftTeams
PS C:\WINDOWS\system32> Connect-MicrosoftTeams
Connect-MicrosoftTeams : The term 'Connect-MicrosoftTeams' is not recognized as the name of a cmdlet, function, script
file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct
and try again.
At line:1 char:1
+ CategoryInfo : ObjectNotFound: (Connect-MicrosoftTeams:String) [], CommandNotFoundException
+ FullyQualifiedErrorId : CommandNotFoundException
Additional features, settings, or issues not covered by specific Microsoft Teams categories
Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.
You need to execute Import-Module MicrosoftTeams after Install-Module.
I am getting same error in ISE also.
there is no difference between powershell and powershell ISE regarding to the teams module,
so the solution is the same, unistall the current version and install an older version by running :
Uninstall-Module MicrosoftTeams
and then you install the version you want / need :
Install-Module -Name MicrosoftTeams -RequiredVersion 1.0.0 or
Install-Module -Name MicrosoftTeams -RequiredVersion 0.9.5 (we seem to have other problems with 1.0.0)
I am getting same error in ISE also.
Thanks for sharing.
How do i install an earlier version? do i have to uninstall my current version?
Yes, you first uninstall the newer or current version with :
Uninstall-Module MicrosoftTeams
then you install the version you want / need :
Install-Module -Name MicrosoftTeams -RequiredVersion 1.0.0
Thanks for sharing.
How do i install an earlier version? do i have to uninstall my current version?