Hi All, Yesterday, Microsoft has released the ExchangeOnlineManagement 3.2.0-Preview1 PowerShell Module to the PowerShell Gallery.
ExchangeOnlineManagement 3.2.0-Preview1
https://www.powershellgallery.com/packages/ExchangeOnlineManagement/3.2.0-Preview1
Whats new in this release: v3.2.0-Preview1 : 1. 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) 2. Bug fixes in Connect-ExchangeOnline. Let's check what Version of the Module is installed and what is available from the PowerShell Gallery
Hi All, Microsoft has announced some new SelfService Purchase Services in Microsoft 365.
Use AllowSelfServicePurchase for the MSCommerce PowerShell module
https://learn.microsoft.com/en-us/microsoft-365/commerce/subscriptions/allowselfservicepurchase-powershell?view=o365-worldwide
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
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
https://www.powershellgallery.com/packages/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 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)
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"
Select your JSON File and choose between "Off", "On", "Report only"
After that your Policy is created
Hi All, Just a few Hours ago, Microsoft has released a new version of the MSIdentityTools PowerShell Module.
MSIdentityTools 2.0.42
https://www.powershellgallery.com/packages/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
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
https://learn.microsoft.com/en-us/exchange/plan-and-deploy/prepare-ad-and-domains?view=exchserver-2019#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
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
https://www.jabra.com/support/release-notes/release-note-jabra-direct
Regards 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
https://community.oneplus.com/thread/1256800845157629952 Regards 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.
Hi All, There is a new Version of Git and i've updated to the latest release
Git Downloads
https://git-scm.com/
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 Let's check the GIT version after the update git --version Regards Andres Bohren