202302s

ExchangeOnlineManagement 3.2.0-Preview1 has been released

Andres Bohren
Hi All, Yesterday, Microsoft has released the ExchangeOnlineManagement 3.2.0-Preview1 PowerShell Module to the PowerShell Gallery. ExchangeOnlineManagement 3.2.0-Preview1 Whats new in v3.2.0-Preview1 : Preview Release of new cmdlets: Updating Briefing Email Settings of a tenant (Get-DefaultTenantBriefingConfig and Set-DefaultTenantBriefingConfig) Updating Viva Insights Feature Settings of a tenant (Get-DefaultTenantMyAnalyticsFeatureConfig and Set-DefaultTenantMyAnalyticsFeatureConfig) Bug fixes in Connect-ExchangeOnline. Let’s check what Version of the Module is installed and what is available from the PowerShell Gallery Get-InstalledModule ExchangeOnlineManagement Find-Module ExchangeOnlineManagement -AllowPrerelease I will install the Preview Side by Side with the Parameter Force

New M365 SelfServicePurchase Products popping up (February 2023)

Andres Bohren
Hi All, Microsoft has announced some new SelfService Purchase Services in Microsoft 365. Use AllowSelfServicePurchase for the MSCommerce PowerShell module During the last Week it was not possible tho review or change it. Apparently it works again since yesterday. Connect to M365 and view the Details. As you can see there are two more: One for Power Automate and one for Teams. Import-Module -Name MSCommerce Connect-MSCommerce Get-MSCommerceProductPolicies -PolicyId AllowSelfServicePurchase Now, let’s disable the new Services

PowerShell Module Microsoft.Online.SharePoint.PowerShell 16.0.23408.12000 released

Andres Bohren
Hi All, Yesterday, Microsoft has released the Microsoft.Online.SharePoint.PowerShell 16.0.23408.12000. PowerShell Module Microsoft.Online.SharePoint.PowerShell 16.0.23408.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 Get-SPOTenant | fl Regards

Conditional Access Templates (Preview)

Andres Bohren
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) 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” Select your JSON File and choose between “Off”, “On”, “Report only” After that your Policy is created

MSIdentityTools PowerShell Module v2.0.42 released

Andres Bohren
Hi All, Just a few Hours ago, Microsoft has released a new version of the MSIdentityTools PowerShell Module. MSIdentityTools 2.0.42 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 resolve an AppId to ObjectId you can use the Command below

How to check Exchange Active Directory Versions

Andres Bohren
Hi All, Sometimes you need to check the Exchange Active Directory Versions to see if a Schema Upgrade is needet. It is well documented on the Website from Microsoft Exchange Active Directory versions In this Case we use ADSIEdit.msc Or you simply run this Script ############################################################################### # Get Exchange AD Schema Version ############################################################################### #Needs ActiveDirectory PowerShell Module # Exchange Schema Version $sc = (Get-ADRootDSE).SchemaNamingContext $ob = "CN=ms-Exch-Schema-Version-Pt," + $sc Write-Output "RangeUpper: $((Get-ADObject $ob -pr rangeUpper).

Jabra Direct Update (February 2023)

Andres Bohren
Hi All, Yesterday i’ve got again a Message that a new Version is available for Jabra Direct. I still don’t understand, why Jabra notifies my every Hour. My Notification Bar in Windows is piled up with these messages. Release Notes Regards Andres Bohren

OnePlus 9 Android security patch 2023.01

Andres Bohren
Hi All, Yesterday i have received an update for my OnePlus 9 Android Smartphone. It includes the Android 2023.01 Security Updates. OxygenOS 13 F.20 / F.74 for the OnePlus 9/9 Pro Regards Andres Bohren

Exchange Online Search and Purge with PowerShell and Threat Explorer

Andres Bohren
Hi All, In this Article i’ll show you how you can “Search and Purge” Emails in Exchange Online. With Compliance Search you can search for Mails and purge (Soft- or HardDelete) them afterwards. That’s usually the case for Phishing or Spam Incidents. Your search can cover a maximum of 50'000 Mailboxes A new Compliance Search will create an Alert by default. First of all you need to have the correct Permissions https://security.

Git for Windows 2.39.2

Andres Bohren
Hi All, There is a new Version of Git and i’ve updated to the latest release Git Downloads Git v2.39.2 Release Notes This release merges up the fixes that appear in v2.30.8, v2.31.7, v2.32.6, v2.33.7, v2.34.7, v2.35.7, v2.36.5, v2.37.6 and v2.38.4 to address the security issues CVE-2023-22490 and CVE-2023-23946; see the release notes for these versions for details. Let’s check the GIT Version before the Update git --version Now run the update