MicrosoftTeams.psm1
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
param( $DllBasePath = $env:dllBasePath) If ($DllBasePath -eq $Null -or $DllBasePath -eq '' ) { $DllBasePath = $PSScriptRoot } $DllBasePath += "\" Import-Module "$($DllBasePath)Newtonsoft.Json.dll" Import-Module "$($DllBasePath)Microsoft.IdentityModel.Clients.ActiveDirectory.dll" Import-Module "$($DllBasePath)Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.dll" Import-Module "$($DllBasePath)Microsoft.Open.Teams.CommonLibrary.dll" Import-Module "$($DllBasePath)Microsoft.Open.Teams.CommonLibrary.Resources.dll" Import-Module "$($DllBasePath)Microsoft.TeamsCmdlets.PowerShell.Custom.dll" |