PowerShell Module Microsoft.Online.SharePoint.PowerShell 16.0.23311.12000 released

Andres Bohren
Hi All, A few hours ago, Microsoft has released the Microsoft.Online.SharePoint.PowerShell 16.0.22615.12000 PowerShell Module Microsoft.Online.SharePoint.PowerShell 16.0.23311.12000 https://www.powershellgallery.com/packages/Microsoft.Online.SharePoint.PowerShell/16.0.23311.12000 Check the installed Version and what is available from the PowerShell Gallery Get-InstalledModule Microsoft.Online.SharePoint.PowerShell Find-Module Microsoft.Online.SharePoint.PowerShell Uninstall the old Version and install the new Version of the Module Uninstall-Module Microsoft.Online.SharePoint.PowerShell Install-Module Microsoft.Online.SharePoint.PowerShell Get-InstalledModule Microsoft.Online.SharePoint.PowerShell List the Commands of the Module Get-Command -Module Microsoft.Online.SharePoint.PowerShell Connect to Sharepoint Online Connect-SPOService -Url https://icewolfch-admin.sharepoint.com Get some Settings

Analyze AzureAD SignIn Logs with PowerShell

Andres Bohren
Hi All, I recently had a case where i needed to access the AzureAD Signin Logs with PowerShell. I've started at the Azure AD Signin Logs and filtered by UPN https://aad.portal.azure.com/#view/Microsoft_AAD_IAM/ActiveDirectoryMenuBlade/~/SignIns Next step was Graph Explorer where i found the needed Permissions ############################################################################### # Graph Explorer ############################################################################### #Go to https://aka.ms/ge https://graph.microsoft.com/v1.0/auditLogs/signIns https://graph.microsoft.com/v1.0/auditLogs/signIns?&$filter=startsWith(userPrincipalName,'a.bohren@icewolf.ch') Let's connect with these Permissions (they need Admin Consent and i already have that) #Import-Module and Connect to Microsoft Graph

Exchange Online: Use Test-Message to verify your Transport- and DLP Rules

Andres Bohren
Hi All, In the Microsoft 365 Message Center https://admin.microsoft.com/#/MessageCenter there is an Announcement about Test-Message where you can test the Transport Rules and DLPRules. FIX: Exchange Transport rule (ETR) or Data Loss Prevention (DLP) rule is not working as expected https://techcommunity.microsoft.com/t5/security-compliance-and-identity/fix-exchange-transport-rule-etr-or-data-loss-prevention-dlp-rule/ba-p/3033869 Test-Message https://learn.microsoft.com/en-us/powershell/module/exchange/test-message?view=exchange-ps Test-Message -Sender m.muster@icewolf.ch -Recipients postmaster@icewolf.ch -SendReportTo a.bohren@icewolf.ch -TransportRules -UnifiedDLPRules Let's have a look at my Transport Rules Get-TransportRule Now i get two Reports: "Transport Rule Tracing Report"

MSIdentityTools PowerShell Module v2.0.36 released

Andres Bohren
Hi All, Microsoft has released another Version of theyr MSIdentityTools PowerShell Module to the Powershell Gallery. MSIdentityTools 2.0.36 https://www.powershellgallery.com/packages/MSIdentityTools/2.0.36 Check what Version of the Module is installed and what's available in the PowerShell Gallery Get-InstalledModule MSIdentityTools Find-Module MSIdentityTools Uninstall the old version of the PowerShell Module and install the newest one Uninstall-Module MSIdentityTools Install-Module MSIdentityTools Get-InstalledModule MSIdentityTools To see what commands are available use the following command Get-Command -Module MSIdentityTools To get the Signin URL you can use the following Command

Microsoft 365 Whiteboard Admin PowerShell Module 1.10.0

Andres Bohren
Hi All, Just a few Hours ago, Microsoft has released a new Version of the WhiteboardAdmin PowerShell Module for Microsoft 365. Release Notes: Fixes Get-WhiteboardsForTenant repetitive auth prompt issue. Includes some improvements for help comments and verbose messages WhiteboardAdmin 1.10.0 https://www.powershellgallery.com/packages/WhiteboardAdmin/1.10.0 Let's check what Version is installed and what's available from the PowerShell Gallery Get-InstalledModule WhiteboardAdmin Find-Module WhiteboardAdmin Let's uninstall the old Module and install the current one Uninstall-Module WhiteboardAdmin Install-Module WhiteboardAdmin Get-InstalledModule WhiteboardAdmin List the Commands of the Module Get-Command -Module WhiteboardAdmin

Migrate MFA and SSPR Authentication Methods

Andres Bohren
Hi All, In January 2024, the legacy multifactor authentication and self-service password reset policies will be deprecated and you'll manage all authentication methods here in the authentication methods policy. Use this control to manage your migration from the legacy policies to the new unified policy. How to migrate MFA and SSPR policy settings to the Authentication methods policy for Azure AD (preview) https://learn.microsoft.com/en-us/azure/active-directory/authentication/how-to-authentication-methods-manage First review current Policies: MFA policy SSPR policy (if used) Authentication methods policy (if used) Enable "

New look for Office on the Web

Andres Bohren
Hi All, Did you notice, that there is a new Look in Office for the web? The new look of Office https://support.microsoft.com/en-us/office/the-new-look-of-office-a6cdf19a-b2bd-4be1-9515-d74a37aa59bf#ID0EBF=Web It applies to all Office on the Web Applications like PowerPoint, Excel and Word. Regards Andres Bohren

OnPrem Exchange Server Update Status visible in M365 Admin Center (Preview)

Andres Bohren
Hi All, The Exchange Server Update Dashboard in Microsoft 365 Admin Center was announced at MEC 2022 in September 2022. In my Tenant this is now available in Preview. As you can see all my OnPrem Exchange Servers are in a supported state And also the Exchange Server have the latest Cumulative Update and Security Update installed Hope this helps to keep your Hybrid Exchange Infrastructure up to date. Regards Andres Bohren

Exchange Online custom RBAC Role with App Authentication (OAuth2)

Andres Bohren
Hi All, I've already blogged about Exchange Online PowerShell V2 and Modern Auth with Application in AzureAD (Step-by-step) Azure AD Application Registration Permission: Office 365 Exchange Online > Exchange.ManageAsApp Add AAD App to Azure AD Role "Exchange Administrator" or "Exchange Recipient Administrator" In this Article it's about custom RBAC Roles and Application Authentication Azure AD Application Registration Permission: Office 365 Exchange Online > Exchange.ManageAsApp Create a Exchange Online Service Principal for the Azure AD App

Git for Windows 2.39.1

Andres Bohren
Hi All, There exists a Security vulnerability in Git and you should update to Git Version 2.39.1 Git Downloads https://git-scm.com/ Git security vulnerabilities announced https://github.blog/2023-01-17-git-security-vulnerabilities-announced-2/ Let's check the GIT Version before the Update git --version Now run the update Let's check the GIT version after the update git --version Regards Andres Bohren