AzureADAssessement and PowerBI Reports

Andres Bohren
Hi All, Recently i came across an interessting Project. Now i had some Time to check it out. Microsoft Azure AD Assessment https://github.com/AzureAD/AzureADAssessment ## Install Module Install-Module AzureADAssessment ## Authenticate using a Global Admin or Global Reader account. Connect-AADAssessment ## Export data to "C:\AzureADAssessment" into a single output package. Invoke-AADAssessmentDataCollection It's important to say, that you have to use PowerShell 7. Seems to be that you need to have an Azure Active Directory P2 License to gather all the Logs.

New Microsoft Authenticator settings in AzureAD

Andres Bohren
Hi All, I've seen some Posts about the new Microsoft Authenticator settings in AzureAD. Here is how you get there. Go to the Azure Active Directory Portal https://aad.portal.azure.com and select "Security" On the Security Page open "Authentication methods" On Authentication methods select "Microsoft Authenticator" On Microsoft Authenticator Settings select "Configure" Here you can change some settings that are already available quite for a while, but now you have a GUI to it.

MicrosoftTeams PowerShell Module 4.7.0 released as GA

Andres Bohren
Hi All, A few hours ago, Microsoft has released the MicrosoftTeams PowerShell Module 4.7.0 as GA (Generally Available) in the PowerShell Gallery. MicrosoftTeams 4.7.0 https://www.powershellgallery.com/packages/MicrosoftTeams/4.7.0 Release Notes https://docs.microsoft.com/en-us/MicrosoftTeams/teams-powershell-release-notes Find the PowerShell Module in the PowerShell Gallery and install it Find-Module MicrosoftTeams Install-Module MicrosoftTeams Get-InstalledModule MicrosoftTeams Uninstall the old Module and install the new Module Uninstall-Module MicrosoftTeams Install-Module MicrosoftTeams Get-InstalledModule MicrosoftTeams Testing Connect-MicrosoftTeams Get-Team Get-CsOnlineUser -Identity a.bohren@icewolf.ch | fl *Ent*,*host*,*voice*, *line* Regards Andres Bohren

Exchange Online Protection Common Attachment Filter Update (Summer 2022)

Andres Bohren
Hi All, As anounced the Microsoft common attachment filter has been updated with 53 default File Extensions and 219 File Extensions that can be selected. That's a huge improvement to what was available end of last Year. Exchange Online Protection Common Attachment Filter Update https://blog.icewolf.ch/archive/2021/11/12/exchange-online-protection-common-attachment-filter-update.aspx Anti-malware protection in EOP https://docs.microsoft.com/en-us/microsoft-365/security/office-365-security/anti-malware-protection?view=o365-worldwide#anti-malware-policies I want to remind you - it's your responsability to define the Policy. Be aware that blocking *.bin Files can cause unintended affects

PowerShell Module Microsoft.Online.SharePoint.PowerShell 16.0.22810.12000 released

Andres Bohren
Hi All, A few hours ago, Microsoft has released a new version of the Microsoft.Online.SharePoint.PowerShell Module. Microsoft.Online.SharePoint.PowerShell 16.0.22810.12000 https://www.powershellgallery.com/packages/Microsoft.Online.SharePoint.PowerShell/16.0.22810.12000 Check the installed Version and what is available on PowerShell Gallery Get-InstalledModule Microsoft.Online.SharePoint.PowerShell Find-Module Microsoft.Online.SharePoint.PowerShell Uninstall the old PowerShell Module and install the new one Uninstall-Module Microsoft.Online.SharePoint.PowerShell Install-Module Microsoft.Online.SharePoint.PowerShell Get-InstalledModule Microsoft.Online.SharePoint.PowerShell Connect to Sharepoint Online Connect-SPOService -Url https://icewolfch-admin.sharepoint.com List the SharePoint Online tenant settings Get-SPOTenant | fl Regards Andres Bohren

Switch Open Data .ch and .li Domains

Andres Bohren
Hi All, Switch the Swiss Registrar for .ch and .li Domains has published the Domains on a Open Data Policy. You can download the top 1'000 Domains or use a Zone Transfer Switch Open Data https://www.switch.ch/open-data/#tab-c5442a19-67cf-11e8-9cf6-5254009dc73c-3 You need to create the TSIG Key # filename ch_zonedata.keykey tsig-zonedata-ch-public-21-01 { algorithm hmac-sha512; secret "stZwEGApYumtXkh73qMLPqfbIDozWKZLkqRvcjKSpRnsor6A6MxixRL6C2HeSVBQNfMW4wer+qjS0ZSfiWiJ3Q=="; }; then use dig to initiate the Zone Transfer dig -k ch_zonedata.key @zonedata.switch.ch +noall +answer +noidnout +onesoa AXFR ch.

Microsoft Azure Active Directory Connect 2.1.16.0 and Auto-Upgrade

Andres Bohren
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.

Microsoft Outlook Lite on Android (Early Access)

Andres Bohren
Hi All, On beginning of August, Microsoft has announced the Microsoft Outlook Lite Version on Android. Microsoft Outlook Introduces Lite Version of Android App https://techcommunity.microsoft.com/t5/outlook-blog/microsoft-outlook-introduces-lite-version-of-android-app/ba-p/3582948 They say the App is: - Small - Fast - Low battery usage - Works on all Networks incl. 2G / 3G It's unclear what Options are not supported or what's the downside of using this app. Microsoft Outlook Lite - Google Play https://play.google.com/store/apps/details?id=com.microsoft.outlooklite&hl=de&gl=MX Regards Andres Bohren

Jabra Direct Update (August 2022)

Andres Bohren
Hi All, A few Days ago Jabra has released theyr August Version of Jabra Direct Versionshinweise für Jabra Direct https://www.jabraheadsets.ch/support/release-notes/release-note-jabra-direct Regards Andres Bohren

Microsoft.Graph PowerShell Module 1.11.1 released

Andres Bohren
Hi All, Yesterday, Microsoft has released a new Version of theyr PowerShell Modules for Microsoft.Graph PowerShell Gallery Microsoft.Graph https://www.powershellgallery.com/packages/Microsoft.Graph/1.11.1 Releases 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) Let's check