POWERSHELL

Update Azure Function extension bundle with PowerShell

Update Azure Function extension bundle with PowerShell

Andres Bohren
Hi All, Recently i did get a lot of Mails from Microsoft, to update the exension bundle for my Azure Functions. The following Microsoft Learn Website shows the supported Versions of the Extension Bundle Azure Functions extension bundles Sadly the Upgrade extension bundles does not give any advice how to do that excactly nor a Script or commands that would update it 🙁 Using the Azure Portal, i can see that there is a Notification on the Azure Function for the Extension Bundle
PowerShell Module Microsoft.Online.SharePoint.PowerShell 16.0.26712.12000 released

PowerShell Module Microsoft.Online.SharePoint.PowerShell 16.0.26712.12000 released

Andres Bohren
Hi All, A day ago, Microsoft has released the Microsoft.Online.SharePoint.PowerShell 16.0.26712.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.
Public Preview Exchange Online Admin API

Public Preview Exchange Online Admin API

Andres Bohren
Hi All, This Week, Microsoft has annouced the Public Preview of Exchange Online Admin API. Announcing Public Preview: Exchange Online Admin API It’s a REST based API, specifically designed to help organizations migrate away from EWS for specific Exchange admin scenarios and modernize automation workflows over HTTPS. Keep in Mind the Deprecation of Exchange Web Services in Exchange Online October 2026 Capabilities available in Public Preview The Admin API Public Preview includes 6 endpoints.
Azure PowerShell Module AZ 15.0.0 released

Azure PowerShell Module AZ 15.0.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 15.0.0 GitHub Release Notes Az 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 Uninstall-PSResource AZ.* -Scope CurrentUser -SkipDependencyCheck In the last few weeks i’ve noticed that uninstalling some Modules seems to have Problems.
MSIdentityTools PowerShell Module 2.7.0 released

MSIdentityTools PowerShell Module 2.7.0 released

Andres Bohren
Hi All, Just a few hours ago, Microsoft has released a new Version of MSIdentityTools PowerShell Module Note that this Module requires PowerShell 7 PowerShell Gallery MSIdentityTools 2.7.0 Some insights via GitHub CommitLog - as you can see there is also a Pull Request from me that has been accepted Let’s check what Version is installed and what’s available from the PowerShell Gallery Get-InstalledPSResource -Name MSIdentityTools -Scope CurrentUser Find-PSResource -Name MSIdentityTools Uninstall old Module and install new Module
AIShell v1.0.0 preview 8

AIShell v1.0.0 preview 8

Andres Bohren
Hi All, I’ts already a month since the Release of AIShell v1.0.0-preview.8. Finally i had time to upgrade to the latest AI Shell. v1.0.0-preview.8 Release of AIShell Install or upgrade with the following PowerShell command Invoke-Expression "& { $(Invoke-RestMethod 'https://aka.ms/install-aishell.ps1') }" Start the AI Shell in Windows Terminal Start-AIShell Now connected with tze Azure AI Agent Regards Andres Bohren PowerShell Logo
MSIdentityTools PowerShell Module 2.2.0 released

MSIdentityTools PowerShell Module 2.2.0 released

Andres Bohren
Hi All, Just a few hours ago, Microsoft has released a new Version of MSIdentityTools PowerShell Module Note that this Module requires PowerShell 7 PowerShell Gallery MSIdentityTools 2.2.0 Some insights via GitHub CommitLog - as you can see there is also a Pull Request from me that has been accepted Let’s check what Version is installed and what’s available from the PowerShell Gallery Get-InstalledPSResource -Name MSIdentityTools -Scope CurrentUser Find-PSResource -Name MSIdentityTools Uninstall old Module and install new Module
MicrosoftTeams PowerShell Module 7.5.0 released

MicrosoftTeams PowerShell Module 7.5.0 released

Andres Bohren
Hi All, A few Minutes ago, Microsoft has released the MicrosoftTeams PowerShell Module 7.5.0 to the PowerShell Gallery. PowerShell Gallery MicrosoftTeams 7.5.0 Read more details in the Release Notes Adds PickUpHeldCalls and JoinActiveCalls parameters to the [New|Set]-CsUserCallingDelegate cmdlets and corresponding output attributes to the Get-CsUserCallingSettings cmdlet. Adds AssignmentBlockedState and AssignmentBlockedUntil output attributes to [Get]-CsPhoneNumberAssignment cmdlet. Releases [Set|Remove]-CsPhoneNumberAssignmentBlock cmdlets. Adds DynamicCallerIdMode parameter to [Get|Set]-CsOnlineDialInConferencingTenantSettings cmdlets. Adds BackroomChat parameter to [New|Set]-CsTeamsMeetingPolicy and [New|Set]-CsTeamsEventsPolicy cmdlets.
MSIdentityTools PowerShell Module 2.1.0 released

MSIdentityTools PowerShell Module 2.1.0 released

Andres Bohren
Hi All, Just a few days ago, Microsoft has released a new Version of MSIdentityTools PowerShell Module Note that this Module requires PowerShell 7 PowerShell Gallery MSIdentityTools 2.1.0 No Release has been created Some insights via GitHub CommitLog - as you can see there is also a Pull Request from me that has been accepted Let’s check what Version is installed and what’s available from the PowerShell Gallery Get-InstalledPSResource -Name MSIdentityTools -Scope CurrentUser Find-PSResource -Name MSIdentityTools Uninstall old Module and install new Module
Microsoft.PowerShell.PSResourceGet 1.2.0-preview4 released

Microsoft.PowerShell.PSResourceGet 1.2.0-preview4 released

Andres Bohren
Hi All, Two days ago, i did get a Notification that the 1.2.0-Preview4 of Microsoft.PowerShell.PSResourceGet has been released. Microsoft.PowerShell.PSResourceGet 1.2.0-preview4 It should now include a fix for uninstalling Modules when OneDrive Folder Redirection is configured Uinstall-PSResource on OneDrive Error: Access to the path is denied Release Notes PowerShell 5 Check installed Module and what’s available on the PowerShell Gallery Get-InstalledPSResource -Name Microsoft.PowerShell.PSResourceGet -Scope CurrentUser Find-PSResource -Name Microsoft.PowerShell.PSResourceGet -Prerelease It’s a little challenge to update the Module that is used for Installing the Module 🤔