HI All, Microsoft has released another Version of theyr MSIdentityTools PowerShell Module to the Powershell Gallery.
MSIdentityTools 2.0.23
https://www.powershellgallery.com/packages/MSIdentityTools/2.0.23 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 Get-InstalledModule MSIdentityTools To see what commands are available use the following command Get-Command -Module MSIdentityTools Regards Andres Bohren
Hi All, A few days ago, Microsoft has released a new Version of Microsoft Azure Active Directory Connect.
Azure AD Connect: Version release history
https://learn.microsoft.com/en-us/azure/active-directory/hybrid/reference-connect-version-history
There are two new Attributes, but only one is currently supported by AADConnect.
How to synchronize attributes for Lifecycle workflows
https://learn.microsoft.com/en-us/azure/active-directory/governance/how-to-lifecycle-workflow-sync-attributes
Microsoft Azure Active Directory Connect 2.1.19.0
https://www.microsoft.com/en-us/download/details.aspx?id=47594
On the M365 Admin Center in the Health > Directory Sync Status you can find the new Version Number
Hi All, A few days ago, Microsoft has released the Version v0.64.0 of the PowerToys.
PowerToys Release v0.64.0
https://github.com/microsoft/PowerToys/releases/
One new Tool is the "File Locksmith" that can tell you what Process is using a File and can kill that Process.
And it contains now an Editor for the Hosts File
Regards Andres Bohren
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 a minor fix.
Microsoft.Graph 1.15.0
https://www.powershellgallery.com/packages/Microsoft.Graph/1.15.0 1.15.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, Microsoft has released the AZ 9.1.0 PowerShell Module to the PowerShell Gallery this Morning.
Az 9.1.0
https://www.powershellgallery.com/packages/AZ/9.1.0
Show Installed AZ Module and what's available in the PowerShell Gallery
Get-InstalledModule AZ -AllVersions Find-Module 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.
#Run Script directly from GitHub
$ScriptFromGitHub = Invoke-WebRequest "https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/main/Azure/Cleanup-AZModules.ps1"
Invoke-Expression $($ScriptFromGitHub.Content) The AZ Module is just a Wrapper Module for all AZ* Modules Get-InstalledModule AZ*
Hi All, Just a few Hours ago, Microsoft has released the MicrosoftTeams PowerShell Module 4.9.0 to the PowerShell Gallery.
MicrosoftTeams 4.9.0
https://www.powershellgallery.com/packages/MicrosoftTeams/4.9.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, Some days ago, Microsoft has released a new Version of the Microsoft.Online.SharePoint.PowerShell Module to the PowerShell Gallery.
Microsoft.Online.SharePoint.PowerShell 16.0.23019.12000
https://www.powershellgallery.com/packages/Microsoft.Online.SharePoint.PowerShell/16.0.23019.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