Forum Discussion
Shawn Beckers
Dec 21, 2020Brass Contributor
Manual Install of Teams PowerShell Module?
Instead of using Install-Module to install the latest version (1.1.6) of the Teams PowerShell module, is it possible to download the NUPKG file and manually install? I would like to install the modu...
- Dec 27, 2020Hi Shawn Beckers
As per the docs articles it is recommended to install it via the shell session. Run as administrator and then
Install-Module MicrosoftTeams -RequiredVersion "1.1.6"
You could download the .nupkg file from the Powershell Gallery, get it onto the machine via removable media or cloud storage, then use a combination of the docs articles together with videos such as this to extrapolate how to install manually
https://www.youtube.com/watch?v=HEWxChLAMQk
As per the docs article, it is not recommended, so would do it via the shell session
Hope that answers your question
Best, Chris
Evgeny_Volkov
Jun 07, 2021Copper Contributor
I faced the same issue and found a way to resolve it.
You must to rename Folder, where reside module files (e.g. MicrosoftTeams.psd1, LICENSE.txt, GetTeamSettings.format.ps1xml and so on) to MicrosoftTeams.
After that you will be able to import module, which was downloaded from powershellgallery and extracted, locally.
Hope it helps you and other members.