Hi All, On beginning of August, Microsoft had released AAD Connect 2.1.16.0. I was exited, because that is the first 2.x version that did support "auto-upgrade"
Azure AD Connect: Version release history
https://docs.microsoft.com/en-us/azure/active-directory/hybrid/reference-connect-version-history Microsoft Azure Active Directory Connect Download
https://www.microsoft.com/en-us/download/details.aspx?id=47594
I've checked the Version of AAD Connect on the Server with Powershell
Import-Module ADSync
(Get-Item "C:\Program Files\Microsoft Azure AD Sync\Bin\miiserver.exe").VersionInfo Set-ADSyncAutoUpgrade -AutoUpgradeState Enabled Get-ADSyncAutoUpgrade
After a while i've realized that the AutoUpgrade was reseted to suspended.
Hi All, Yesterday Microsoft has released the Azure PowerShell Module AZ v8.2.0 Az 8.2.0
https://www.powershellgallery.com/packages/AZ/8.2.0
Check your current installed Module and what is available on PowerShell Gallery
Get-InstalledModule AZ Find-Module AZ I've published a Script in my GitHub Repo to uninstall the old Modules and install the new Modules https://github.com/BohrenAn/GitHub_PowerShellScripts/blob/main/AzureAD/Microsoft.Graph_HowToStart.ps1
Or you can run the Script below to directly execute that Script
#Run Script directly from GitHub
$ScriptFromGitHub = Invoke-WebRequest "
Hi All, Just a few Hours ago, Microsoft has released a new Version of Azure Active Directory Connect with a lot of Butfixes and some Functional changes.
Azure AD Connect: Version release history
https://docs.microsoft.com/en-us/azure/active-directory/hybrid/reference-connect-version-history
Microsoft Azure Active Directory Connect Download
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
https://admin.microsoft.com/#/dirsyncmanagement Regards Andres Bohren
Hi All, A few Hours ago, Microsoft has released the Azure PowerShell Module AZ v8.1.0 Az 8.1.0
https://www.powershellgallery.com/packages/Az/8.1.0 Azure PowerShell release notes
https://docs.microsoft.com/en-us/powershell/azure/release-notes-azureps?view=azps-8.1.0
Check your current installed Module and what is available on PowerShell Gallery
Get-InstalledModule AZ Find-Module AZ I've published a Script in my GitHub Repo to uninstall the old Modules and install the new Modules https://github.com/BohrenAn/GitHub_PowerShellScripts/blob/main/AzureAD/Microsoft.Graph_HowToStart.ps1
Or you can run the Script below to directly execute that Script
Hi All, It's been a while since i blogged about Group Writeback. Now there are some new Scenarios in the Preview: AAD Connect GroupWritebackV2.
Group writeback in the Azure Active Directory admin center (preview)
https://docs.microsoft.com/en-us/azure/active-directory/enterprise-users/groups-write-back-portal
Azure AD Connect group writeback
https://docs.microsoft.com/en-us/azure/active-directory/hybrid/how-to-connect-group-writeback-v2
I have GroupWriteback enabled and it looks like this
Let's check the current Settings
Import-Module 'C:\Program Files\Microsoft Azure AD Sync\Bin\ADSync\ADSync.psd1'
Get-ADSyncAADCompanyFeature
Let's enable GroupWritebackV2
Set-ADSyncAADCompanyFeature -GroupWritebackV2 $true
In Azure AD Admin Center you have to add the Columns
Hi All, Azure Active Directory Sign-in Logs is really helpful, when analyzing Sign-in Problems. But it also can be very helpful, when analyzing the overall Sign-ins or looking out for strange behavior. One of the Tips would be th Filter for Location and use the CountryCode and Status of Sucess
I have set up Azure Active Directory Diagnostics to save the Sign-In Logs to a LogAnalytics Workspace. Here you can Query the Logs with KQL.
Hi All, I had almost forgotten, that on the Microsoft Patchday also a new Version of Azure FileSyncAgent was available. When i look at the Azure Storage Sync Service i see that the Registered Server runs FileSyncAgent 14.1
Azure File Sync Agent v15.0
https://www.microsoft.com/en-us/download/details.aspx?id=57159
I've downloaded the MSI but was not able to install, without uninstalling the Software first
Instead i used the Windows Update Package
After a Reboot i can see the new Azure File Sync Agent Version in Azure Portal
Hi All, A few Hours ago, Microsoft has released the Azure PowerShell Module AZ v8.0.0
Microsoft Azure PowerShell AZ 8.0.0
https://www.powershellgallery.com/packages/AZ/8.0.0 Release Notes not yet udated
https://docs.microsoft.com/en-us/powershell/azure/release-notes-azureps?view=azps-7.5.0 Check your current installed Module and what is available on PowerShell Gallery
Get-InstalledModule AZ Find-Module AZ
I've published a Script in my GitHub Repo to uninstall the old Modules and install the new Modules https://github.com/BohrenAn/GitHub_PowerShellScripts/blob/main/AzureAD/Microsoft.Graph_HowToStart.ps1
Or you can run the Script below to directly execute that Script
Hi All, As you probably know, i am a big Fan of Azure Automation to run some Automation Scripts for M365 in Azure. When you try to install a new Microsoft Graph Module in Azure Automation from the Gallery it will fail, due its dependency for Microsoft.Graph.Authentication, because an older Version is installed.
I've tried to figure out, how to update the Modules with PowerShell (too much clicking for doing it manually).
Hi All, Yesterday the AZ PowerShell Module 7.5.0 has been released
AZ PowerShell Module 7.5.0
https://www.powershellgallery.com/packages/az/7.5.0
I have used my Cleanup-AZModules.psy from my GitHub Repo to update the Modules
https://github.com/BohrenAn/GitHub_PowerShellScripts/blob/main/Azure/Cleanup-AZModules.ps1
Get-InstalledModule AZ
Get-InstalledModule AZ.*
Regards Andres Bohren