Hi All, A few hours ago, Microsoft has released a new Version of the Microsoft.Graph PowerShell Module. Apparently it covers the latest API version and some minor fixe Microsoft.Graph 1.13.0
https://www.powershellgallery.com/packages/Microsoft.Graph/1.13.0 1.13.0 Release Notes
https://github.com/microsoftgraph/msgraph-sdk-powershell/releases
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.
Hi All, Today Microsoft has released AZ PowerShell Module 9.0.0.
Az 9.0.0
https://www.powershellgallery.com/packages/AZ/9.0.0
Migration Guide for Az 9.0.0
https://learn.microsoft.com/en-us/powershell/azure/migrate-az-9.0.0?view=azps-8.3.0
Show Installed AZ Module and what's available in the PowerShell Gallery
Get-InstalledModule AZ -AllVersions Find-Module AZ
AZ is just a Wrapper Module that contains a lot of other Modules Get-InstalledModule AZ*
To uninstall all the old Modules and install the new Modules i have written a PowerShell Script that is published at my GitHub Repo.
Hi All, Just a few hours ago, Microsoft has released the MicrosoftTeams PowerShell Module 4.8.0 to the PowerShell Gallery.
MicrosoftTeams 4.8.0
https://www.powershellgallery.com/packages/MicrosoftTeams/4.8.0
Microsoft Teams PowerShell Release Notes
https://learn.microsoft.com/en-us/MicrosoftTeams/teams-powershell-release-notes
Check installed Module and what's available in the PowerShell Gallery
Get-InstalledModule MicrosoftTeams -AllVersions Find-Module MicrosoftTeams
As i have two Modules installed i have to uninstall both and then install the current Version of the MicrosoftTeams PowerShell Module
Uninstall-Module MicrosoftTeams Uninstall-Module MicrosoftTeams Install-Module MicrosoftTeams Testing
Hi All, My work as a Cloud Engineer is around M365 and Azure. As a Messaging Expert, i often use DNS to Query for diffrent Records like MX, SPF, DKIM, DMARC etc.
A while ago, i startet to create a Script that checks all these Settings for a specific Domain. The Script has been published to my GitHub Repo. The Script checks diffrent DNS Records about a Domain - mostly about Mailsecurity Settings.
Hi All, A few hours ago, Microsoft has released a new Version of the Microsoft.Graph PowerShell Module. Apparently it covers the latest API version and some minor fixes.
Microsoft.Graph 1.12.2
https://www.powershellgallery.com/packages/Microsoft.Graph/1.12.3 Release Notes
https://github.com/microsoftgraph/msgraph-sdk-powershell/releases 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.
Hi All, Just a few Hours ago, the Microsoft has released the Version 2.0.22 of the MSIdentityTools PowerShell Module. MSIdentityTools 2.0.22
https://www.powershellgallery.com/packages/MSIdentityTools/2.0.22 According to the Pull requests only one Minor Update recarding ADFS was made
https://github.com/AzureAD/MSIdentityTools/pulls?q=is%3Apr+is%3Aclosed
Check installed PowerShell Module Version and what is available in the PowerShell Gallery (Needs to run "As Administrator")
Get-InstalledModule MSIdentityTools Find-Module MSIdentityTools Uninstall the Old PowerShell Module and install the newest one
Uninstall-Module MSIdentityTools -Force
Hi All, A few hours ago, Microsoft has released a new Version of the Microsoft.Graph PowerShell Module. Apparently it covers the latest API version and some minor fixes.
Microsoft.Graph 1.12.2
https://www.powershellgallery.com/packages/Microsoft.Graph/1.12.2 Release Notes
https://github.com/microsoftgraph/msgraph-sdk-powershell/releases 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.
Hi All, A few hours ago, Microsoft has released a new Version of the SharePoint Online PowerShell Module.
Microsoft.Online.SharePoint.PowerShell 16.0.22921.12000 https://www.powershellgallery.com/packages/Microsoft.Online.SharePoint.PowerShell/16.0.22921.12000
Check what Module Version is installed and what's available from the PowerShell Gallery
Get-InstalledModule Microsoft.Online.SharePoint.PowerShell
Find-Module Microsoft.Online.SharePoint.PowerShell
Uninstall the old Module and install the new Version
Uninstall-Module Microsoft.Online.SharePoint.PowerShell
Install-Module Microsoft.Online.SharePoint.PowerShell
Get-InstalledModule Microsoft.Online.SharePoint.PowerShell
Regards Andres Bohren
Hi All, Microsoft has released another Version of theyr MSIdentityTools PowerShell Module to the Powershell Gallery.
MSIdentityTools 2.0.21
https://www.powershellgallery.com/packages/MSIdentityTools/2.0.21
Uninstall the old version of the PowerShell Module and install the newest one
Get-InstalledModule MSIdentityTools Find-Module MSIdentityTools Uninstall-Module MSIdentityTools
Install-Module MSIdentityTools
To see what commands are available use the following command Get-Command -Module MSIdentityTools
It's best to use PowerShell 7 with that Module
Get-MsIdAuthorityUri Regards Andres Bohren
Hi All, Microsoft.Graph 1.12.0
https://www.powershellgallery.com/packages/Microsoft.Graph/1.12.0 Release Notes
https://github.com/microsoftgraph/msgraph-sdk-powershell/releases
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) It takes a while until all Modules are installed. Wait until "Cleanup finished" is shown