Microsoft.Graph PowerShell Module 1.11.1 released
Hi All,
Yesterday, Microsoft has released a new Version of theyr PowerShell Modules for Microsoft.Graph
Let’s check the installed Version and what’s available on the PowerShell Gallery
Get-InstalledModule Microsoft.Graph
Find-Module Microsoft.Graph
To install the newest Version of the PowerShell Modules and also uninstalling the old Versions, you can use my GitHub Script
#Run Script directly from GitHub
$ScriptFromGitHub = Invoke-WebRequest "https://raw.githubusercontent.com/BohrenAn/GitHub\_PowerShellScripts/main/ExchangeOnline/GraphAPI/Cleanup-GraphModules.ps1"
Invoke-Expression $($ScriptFromGitHub.Content)
Let’s check
Get-InstalledModule Microsoft.Graph
Get-InstalledModule Microsoft.Graph\*
Regards
Andres Bohren