Hi All,
Last Week, PowerToys v0.69.0 has been released.
PowerToys Release v0.69.0 After the Update the Release notes are shown
One of the Preview Tools is “Registry Preview”
I did open a RegFile that i had exported earlier.
Regards
Andres Bohren
Hi All,
Already a few weeks back i was able to configure my Avatar for Microsoft Teams.
Go to “Apps” in your Teams Client and search for “Avatar”
Add the App
Now you will be guided to create your first Avatar
Select one of the Avatars
You can customize the Avatar
Today when i joined a Meeting, i was able to select my Avatar. But for that you need to be in the Public Preview of Microsoft Teams Client.
Hi All,
This feature is already a few Months old, but i haven’t tested it. Now i had the Time to have a look into the Feature and test it out.
Calling policies in Teams
Teams Calling Policy I’ve changed this to
https://local.ch/s/{phone} Let’s have a look at it in PowerShell
Get-CsTeamsCallingPolicy -Identity IcewolfAllowCalling Now we need to grant that Policy to the User
Grant-CsTeamsCallingPolicy -Identity a.bohren@icewolf.ch -PolicyName IcewolfAllowCalling Get-CsOnlineUser -Identity a.
Hi All,
As a Messaging Engineer / Architect i am well familiar with all the Messaging Standards that help to improve the Security of your Domain.
Check out my Get-Mailprotection.ps1 Script
Basics about SPF / DKIM / DMARC
SPF / DKIM / DMARC DMARC Advisor - so far the best DMARC Reporting Tool
DMARC Advisor Lately there has been an Anoucement that Exchange Online will also send DMARC Aggregate Reports (RUA) if the MX Points directly to Exchange Online.
Hi All,
Just a few Hours ago, a new Version of the AZ PowerShell Module has been released to PowerShell Gallery.
Az 9.6.0 Change Log 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,
Just a few Hours ago, a new Version of PnP.PowerShell has been released to the PowerShell Gallery. There has been a bump to Version 2 since the last Version 1.12 in November 2022.
PnP.PowerShell 2.1.1 Release Notes To check what version is installed and what’s available from the PowerShell Gallery use the following Commands
Get-InstalledModule PnP.PowerShell Find-Module PnP.PowerShell Uninstall the old version of the PowerShell Module and install the new one
Hi All,
The Microsoft.Graph Modules are updated very often. It annoyed me to update these Modules on my Azure Automation Account.
I have now written a Azure Automation Runbook to automate the Update of the Microsoft.Graph Modules.
It uses Managed Identity and updates the PowerShell 5.1 and 7.1 Modules.
As mentioned the Azure Automation Account has a system assigned Service Principal
That Service Principal needs Contributor Permissions on the Azure Automation Account
Hi All,
Just a few Hours ago, Microsoft has released a new Version of Microsoft.Graph PowerShell Modules to the PowerShell Gallery. It is the third update of these Modules this Month!
Microsoft.Graph 1.25.0 Release Notes 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.
Hi All,
Just a few Hours ago, Microsoft has released the MicrosoftTeams PowerShell Module 5.1.0 to the PowerShell Gallery.
MicrosoftTeams 5.1.0 Microsoft Teams PowerShell Release Notes Check installed Module and what’s available in the PowerShell Gallery
Get-InstalledModule MicrosoftTeams 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 (since 5.0)
Get-CsOnlineUser -Filter {City -eq 'Bern'} | ft UserPrincipalName Get-CsOnlineUser -Filter {Company -like 'Ice\*'} | ft UserPrincipalName Get-CsOnlineUser -Filter {FeatureTypes -contains "PhoneSystem"} | ft UserPrincipalName Get-CsOnlineUser -Identity a.
Hi All,
Yesterday, Microsoft has released the Microsoft.Online.SharePoint.PowerShell 16.0.23508.12000. PowerShell Module
Microsoft.Online.SharePoint.PowerShell 16.0.23508.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