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 Release Notes 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,
Do you know the User reported Settings in Microsoft 365 Defender for Office 365?
For instance, you can send the Mails that a user reports with the “Report Message” Add-In to Microsoft also to a reporting Mailbox that you own.
User reported settings User Reported Settings
https://security.microsoft.com/securitysettings/userSubmission
I’ve enabled that a while ago.
As you can see the Reporting Mailbox receives all types:
Junk Phishing Not Junk The Mail contains the Header and the Original Mail as Attachment.
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”.
MS Learn Monitor availability with URL ping tests URL ping test:
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,
Somehow i missed, that already yesterday Microsoft has released a new Version of Microsoft.Graph PowerShell Modules to the PowerShell Gallery.
Microsoft.Graph 1.23.0 Release Notes (Not yet listed there) 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. It takes a while until all Modules are installed.
Hi All,
I’ve stubled across the Message below in the Microsoft 365 Message Center and decidet to give it a try.
Turn pronouns on or off for your organization in the Microsoft 365 admin center Pronouns on your profile in Microsoft 365 Pronouns best practices Frequently asked questions about pronouns in Microsoft 365 M365 Admin Center > Org Settings > Security & privacy > Pronouns
It’s disabled by default and has to be enabled by an Administrator
Hi All,
A few hours ago a new Version of the Microsoft Defender for Office 365 Recommended Configuration Analyzer (ORCA) Module has been released.
ORCA 2.2 To check the installed Module and what’s available on PowerShell Gallery use the commands below
Get-InstalledModule ORCA Find-Module ORCA Uninstall the old and install the new PowerShell Module
Uninstall-Module ORCA Install-Module ORCA Get-InstalledModule ORCA The Module only contains two Commands
Get-Command -Module ORCA Now let’s run the ORCA Report
Hi All,
Just a few Hours ago, Microsoft has released the MicrosoftTeams PowerShell Module 5.0.0 to the PowerShell Gallery.
MicrosoftTeams 5.0.0 Microsoft Teams PowerShell Release Notes
Check installed Module and what’s available in the PowerShell Gallery
Get-InstalledModule MicrosoftTeams -AllVersions Find-Module MicrosoftTeams Uninstall the old Module and install the newest Module
Uninstall-Module MicrosoftTeams Install-Module MicrosoftTeams Get-InstalledModule MicrosoftTeams Testing
Connect-MicrosoftTeams Get-CsOnlineUser -Identity a.bohren@icewolf.ch Some new Filering
Get-CsOnlineUser -Filter {City -eq 'Bern'} | ft UserPrincipalName Get-CsOnlineUser -Filter {Company -like 'Ice\*'} | ft UserPrincipalName Get-CsOnlineUser -Filter {FeatureTypes -contains "PhoneSystem"} | ft UserPrincipalName Regards
Hi All,
Yesterday the PowerToys v0.68.0 have been released.
PowerToys Release v0.68.0 In Teams or Browsers you can use “CTRL + SHIFT + V” to paste as Plain Text.
Now there is a General Shortcut to do that everywhere “CTRL + WIN + V”
Regards
Andres Bohren
Hi All,
Today i realized that there is a new version of PowerShell 7.
v7.3.3 Release of PowerShell I have downloaded the x64 *.msi and these are the Screenshots from the Installation.
I always enable “Enable PowerShell remoting” wich is not enabled by default.
Let’s start and see
pwsh Get-Host Regards
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