POWERSHELL

WhiteboardAdmin 1.13.6 PowerShell Module released

WhiteboardAdmin 1.13.6 PowerShell Module released

Andres Bohren
Hi All, A few days ago, Microsoft has released a new Version of the WhiteboardAdmin PowerShell Module to the PowerShell Gallery. PowerShell Gallery WhiteboardAdmin 1.13.6 The Release Notes does not give a lot of insights I am using the new PSResourceGet here instead of the PowerShellGet commands. Show installed Versions and what’s available in PowerShell Gallery Get-InstalledPSResource WhiteboardAdmin -Scope CurrentUser Find-PSResource WhiteboardAdmin Uninstalling the Modules with Uninstall-PSResource failed again. Uninstall-PSResource WhiteboardAdmin -Scope CurrentUser So i am using the PowerShell Module M365PSProfile and use the -FileMode Parameter
AI Shell in Windows Terminal Preview

AI Shell in Windows Terminal Preview

Andres Bohren
Hi All, I’ve heard about the AIShell on the MVPSummit back in March 2025 for the first time. The release of AI Shell Preview 4 and the Blog Article released inspired me to write this Blog Article. AI Shell Preview 4 Release! Prerequisites Windows 11 21H2 or higher Windows Terminal v1.19 or higher Azure CLI version 2.30.0 or higher installed and signed in to the allowed tenant PSRealdline 2.4.2-beta2 Let’s check the Azure CLI
WhiteboardAdmin 1.13.5 PowerShell Module released

WhiteboardAdmin 1.13.5 PowerShell Module released

Andres Bohren
Hi All, A few days ago, Microsoft has released a new Version of the WhiteboardAdmin PowerShell Module to the PowerShell Gallery. PowerShell Gallery WhiteboardAdmin 1.13.5 The Release Notes does not give a lot of insights I am using the new PSResourceGet here instead of the PowerShellGet commands. Show installed Versions and what’s available in PowerShell Gallery Get-InstalledPSResource WhiteboardAdmin -Scope CurrentUser Find-PSResource WhiteboardAdmin Uninstalling the Modules with Uninstall-PSResource failed again. Uninstall-PSResource WhiteboardAdmin -Scope CurrentUser So i am using the PowerShell Module M365PSProfile and use the -FileMode Parameter
MicrosoftTeams PowerShell Module 7.1.0 released

MicrosoftTeams PowerShell Module 7.1.0 released

Andres Bohren
Hi All, A few hours ago, Microsoft has released the MicrosoftTeams PowerShell Module 7.1.0 to the PowerShell Gallery. PowerShell Gallery MicrosoftTeams 7.1.0 Read more details in the Release Notes Adds ThreadedChannelCreation parameter to [New|Set]-CsTeamsChannelsPolicy cmdlets. Adds BroadcastPremiumApps parameter to [New|Set]-CsTeamsEventsPolicy cmdlets. Adds ParticipantSlideControl parameter to [New|Set]-CsTeamsMeetingPolicy cmdlets. [BREAKING CHANGE] Removes AllowPublicUsers parameter from [Set]-CsTenantFederationConfiguration cmdlet. [BREAKING CHANGE] Removes EnablePublicCloudAccess parameter from [New|Set]-CsExternalAccessPolicy cmdlets. Releases [New|Set|Remove|Get]-CsSharedCallQueueHistoryTemplate cmdlets. Adds SharedCallQueueHistoryTemplateId parameter to [New|Set]-CsCallQueue cmdlets.
Azure PowerShell Module AZ 14.1.0 released

Azure PowerShell Module AZ 14.1.0 released

Andres Bohren
Hi All, Just a few hours ago, a new Version of the AZ (Azure) PowerShell Module has been released to PowerShell Gallery. PowerShell Gallery Az 14.1.0 GitHub Release Notes Az There are a number of changes described here I am using the new PSResourceGet here instead of the PowerShellGet commands. Show installed Versions and what’s available in PowerShell Gallery Get-InstalledPSResource -Name AZ -Scope CurrentUser Find-PSResource -Name AZ Uninstall the old Modules
PowerShell Module Microsoft.Online.SharePoint.PowerShell 16.0.26121.12000 released

PowerShell Module Microsoft.Online.SharePoint.PowerShell 16.0.26121.12000 released

Andres Bohren
Hi All, Almost a day ago, Microsoft has released the Microsoft.Online.SharePoint.PowerShell 16.0.26121.12000 PowerShell Module. PowerShell Gallery Microsoft.Online.SharePoint.PowerShell I am using the new PSResourceGet here instead of the PowerShellGet commands. Show installed Versions and what’s available in PowerShell Gallery Get-InstalledPSResource -Name Microsoft.Online.SharePoint.PowerShell -Scope CurrentUser Find-PSResource -Name Microsoft.Online.SharePoint.PowerShell Uninstall the old Version and install the new Version of the Module Uninstall-PSResource -Name Microsoft.Online.SharePoint.PowerShell -Scope CurrentUser In the last few weeks i’ve noticed that uninstalling some Modules seems to have Problems.
Export Group Membership of a User in AD and Entra

Export Group Membership of a User in AD and Entra

Andres Bohren
Hi All, Recently i wanted to export the Groups of a User. Here is some code i used for Active Directory and Entra ID. Active Directory First let’s look into Active Directory. We can use the Get-ADUser commandlet and specify the “MemberOf” Property ############################################################################### # AD GroupMember ############################################################################### $SamAccountName = "m.muster" $DomainController = (Get-ADDomainController).HostName $User = Get-ADUser -Identity $SamAccountName -Properties "Memberof" -Server $DomainController $Groups = $User.MemberOf $Groups After sime String Magic we have the GroupName
Azure PowerShell Module AZ 14.0.0 released

Azure PowerShell Module AZ 14.0.0 released

Andres Bohren
Hi All, Two days ago, a new Version of the AZ (Azure) PowerShell Module has been released to PowerShell Gallery. PowerShell Gallery Az 14.0.0 GitHub Release Notes Az There are a number of changes described here I am using the new PSResourceGet here instead of the PowerShellGet commands. Show installed Versions and what’s available in PowerShell Gallery Get-InstalledPSResource -Name AZ -Scope CurrentUser Find-PSResource -Name AZ Uninstall the old Modules Uninstall-PSResource AZ -Scope CurrentUser -SkipDependencyCheck In the last few weeks i’ve noticed that uninstalling some Modules seems to have Problems.
ExchangeOnlineManagement 3.8.0 released

ExchangeOnlineManagement 3.8.0 released

Andres Bohren
Hi All, This Morning Microsoft has released the ExchangeOnlineManagement 3.8.0 PowerShell Module. PowerShell Gallery ExchangeOnlineManagement 3.8.0 v3.8.0: Support for providing an Access Token with Connect-IPPSSession. Get-VivaModuleFeature now returns information about ParentFeature, ChildFeature, and PolicyModes. These values represents parent and child features of a Viva App feature along with available enablement modes for policies for the feature. Added a new parameter IsUserOptedInByDefault in Add-VivaModuleFeaturePolicy and Update-VivaModuleFeaturePolicy cmdlets and its return value in all VivaModuleFeaturePolicy cmdlets.
The diffrence between Managed and Federated Domain

The diffrence between Managed and Federated Domain

Andres Bohren
Hi All, In Entra Id there are fundamentally three diffrent Identity Models Cloud Identity (Cloud Only Accounts) Syncronized Identity / Hybrid Identity (Syncronized with Entra Connect Sync or Cloud Sync from OnPrem Active Directory with password sync) Federated Identity (Like Syncronized Identity but without password sync - Authentication happens on the Federation Server and requrires a Trust between Entra and the Federation Service) Image Source: Choosing a sign-in model for Office 365