Hi All, Apparently i don't use Azure Storage Explorer a lot. As i did use it this Week i noticed that there is an Update available.
Release Notes
https://github.com/microsoft/AzureStorageExplorer/releases
How to use the Azure Storage Explorer https://learn.microsoft.com/en-us/azure/vs-azure-tools-storage-manage-with-storage-explorer?tabs=windows
Regards Andres Bohren
Hi All, Yesterday was Microsoft Patchday for April 2023. I have noticed on one of my Servers that there is an Update for the Azure File Sync Agent to Version 16.0.
In Azure Portal under Storage Sync Service you can see that the current Version of the Agent is 15.2 I downloaded the new Version of the File Sync Agent - but that was a fail Azure File Sync Agent 16.
Hi All, Just a few Hours ago, a new Version of the AZ PowerShell Module has been released to PowerShell Gallery. Az 9.6.0
https://www.powershellgallery.com/packages/AZ/9.6.0
Change Log
https://github.com/Azure/azure-powershell/blob/main/ChangeLog.md
Show Installed AZ Module and what's available in the PowerShell Gallery
Get-InstalledModule AZ
Find-Module AZ #Run Script directly from GitHub$ScriptFromGitHub = Invoke-WebRequest "https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/main/Azure/Cleanup-AZModules.ps1"Invoke-Expression $($ScriptFromGitHub.
Hi All, The Microsoft.Graph Modules are updated very often. It annoyed me to update these Modules on my Azure Automation Account. I have now written a Azure Automation Runbook to automate the Update of the Microsoft.Graph Modules. It uses Managed Identity and updates the PowerShell 5.1 and 7.1 Modules.
As mentioned the Azure Automation Account has a system assigned Service Principal
That Service Principal needs Contributor Permissions on the Azure Automation Account
Hi All, A few days ago, i was very enthusiastic, because i found some new Logs in Azure Active Directory Diagnostic Settings EnrichedOffice365AuditLogs MicrosoftGraphActivityLogs I've enabled all those logs
But i could not see any new Tables in the Log Analytics Workspace
So i googled around and found out, that you can enable those logs, but the Tables are not created unless you where in the Preview :(
Hi All, Just a few Hours ago, a new Version of the AZ PowerShell Module has been released to PowerShell Gallery. Az 9.5.0
https://www.powershellgallery.com/packages/az/9.5.0 Release Notes
https://learn.microsoft.com/en-us/powershell/azure/release-notes-azureps
Show Installed AZ Module and what's available in the PowerShell Gallery
Get-InstalledModule AZ
Find-Module AZ #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* Regards Andres Bohren
Hi All, I wanted to monitor the Performance of my Blog. I've added Application Insights to my Azure Subscription and under "Availablility" i have added a "Classic test" Monitor availability with URL ping tests https://learn.microsoft.com/en-us/azure/azure-monitor/app/monitor-web-app-availability
URL Ping Add the URL, the Regions where you want to test from, the Response Code and Timeout. In my case i don't need an Alert.
After a few days you can se now the Availability is at 100%
Hi All, Did you notice that you can download Conditional Access Templates. The Templates are documented in the Conditional Access Doumentation below
Conditional Access templates (Preview)
https://learn.microsoft.com/en-us/azure/active-directory/conditional-access/concept-conditional-access-policy-common
In Conditional Access Management select "New policy from template"
Now you have a diffrent range of Policys and can download the JSON
Back in Conditional Access select "Upload policy file"
Hi All, Today i had an interesting case with AzureAD Connect Synchronization from Active Directory to Azure Active Directory. The Customer is in the middle of a reorganization and was changing the Domain.
I've added the new UPN to the UPN Suffixes in Azure AD (domain.msc > Properties) We addet the new Domain to the M365 Tenant Then i've changed the UPN Suffix of a Testuser. But the UPN did not change in AzureAD after the AAD Connect Sync Cycle.
Hi All, Yesterday the new Version of the AZ PowerShell Module 9.4.0 has been released to PowerShell Gallery.
Az 9.4.0
https://www.powershellgallery.com/packages/AZ/9.4.0
Azure PowerShell release notes
https://learn.microsoft.com/en-us/powershell/azure/release-notes-azureps?view=azps-9.4.0
Show Installed AZ Module and what's available in the PowerShell Gallery
Get-InstalledModule AZ
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.