Hi All, Today Microsoft has released a new Version of the MicrosoftTeams PowerShell Module to the PowerShell Gallery.
MicrosoftTeams 4.9.1
https://www.powershellgallery.com/packages/MicrosoftTeams/4.9.1
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 Uninstall-Module MicrosoftTeams Install-Module MicrosoftTeams Testing
Connect-MicrosoftTeams
Get-Team
Get-CsOnlineUser -Identity a.bohren@icewolf.ch | fl *Ent*,*host*,*voice*, *line* Regards Andres Bohren
Hi All, With the ExchangeOnlineManagement PowerShell Module 3.0.0, Microsoft has providet the Ability to use Managed Identity in Azure. Time to test that on my own.
ExchangeOnlineManagement 3.0.0
https://www.powershellgallery.com/packages/ExchangeOnlineManagement/3.0.0 v3.0.0 :
1. General Availability of REST-backed cmdlets for Exchange Online which do not require WinRM Basic Authentication to be enabled.
2. General Availability of Certificate Based Authentication for Security and Compliance PowerShell cmdlets.
3. Support for System-Assigned and User-Assigned ManagedIdentities to connect to ExchangeOnline from Azure VMs, Azure Virtual Machine Scale Sets and Azure Functions.
Hi All, Over a Year ago i released my first PowerShell Module in the PowerShell Gallery Icewolf.EXO.SpamAnalyze. Now it was time for an Update.
Icewolf.EXO.SpamAnalyze 2.0.8
https://www.powershellgallery.com/packages/Icewolf.EXO.SpamAnalyze/2.0.8
Whats new in this release:
V2.0.8
- Requires now ExchangeOnlineManagement 3.0.0
- Addet TenantAllowBlockList checks
Check installed Version and what's available in the PowerShell Gallery Get-InstalledModule Icewolf.EXO.Spamanalyze Find-Module Icewolf.EXO.Spamanalyze Uninstall the old Module and install the current one Uninstall-Module Icewolf.EXO.Spamanalyze Install-Module Icewolf.EXO.Spamanalyze Get-InstalledModule Icewolf.
Hi All, A few hours ago, Microsoft has released a new Version of the Microsoft.Graph PowerShell Module. Apparently it covers the latest API version and a minor fix.
Microsoft.Graph 1.16.0
https://www.powershellgallery.com/packages/Microsoft.Graph/1.16.0
1.16.0 Release Notes
https://github.com/microsoftgraph/msgraph-sdk-powershell/releases 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, A few Hours ago, a new Version of the PnP.PowerShell Module has been released.
PnP.PowerShell 1.12.0
https://www.powershellgallery.com/packages/pnp.powerShell/1.12.0
PnP.PowerShell Changelog
https://github.com/pnp/powershell/blob/dev/CHANGELOG.md
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 Uninstall-Module PnP.PowerShell Install-Module PnP.PowerShell Get-InstalledModule PnP.PowerShell Now you can use the PowerShell Module.
Some example code below.
Hi All, Yesterday Microsoft has released PowerShell 7.3.0
v7.3.0 Release of PowerShell
https://github.com/PowerShell/PowerShell/releases/tag/v7.3.0 What's New in PowerShell 7.3
https://learn.microsoft.com/en-us/powershell/scripting/whats-new/what-s-new-in-powershell-73?view=powershell-7.3
Regards Andres Bohren
HI All, Microsoft has released another Version of theyr MSIdentityTools PowerShell Module to the Powershell Gallery.
MSIdentityTools 2.0.23
https://www.powershellgallery.com/packages/MSIdentityTools/2.0.23 Uninstall the old version of the PowerShell Module and install the newest one
Get-InstalledModule MSIdentityTools Find-Module MSIdentityTools Uninstall-Module MSIdentityTools
Install-Module MSIdentityTools Get-InstalledModule MSIdentityTools To see what commands are available use the following command Get-Command -Module MSIdentityTools Regards Andres Bohren
Hi All, A few hours ago, Microsoft has released a new Version of the Microsoft.Graph PowerShell Module. Apparently it covers the latest API version and a minor fix.
Microsoft.Graph 1.15.0
https://www.powershellgallery.com/packages/Microsoft.Graph/1.15.0 1.15.0 Release Notes
https://github.com/microsoftgraph/msgraph-sdk-powershell/releases 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, Microsoft has released the AZ 9.1.0 PowerShell Module to the PowerShell Gallery this Morning.
Az 9.1.0
https://www.powershellgallery.com/packages/AZ/9.1.0
Show Installed AZ Module and what's available in the PowerShell Gallery
Get-InstalledModule AZ -AllVersions Find-Module AZ To uninstall all the old Modules and install the new Modules i have written a PowerShell Script that is published at my GitHub Repo.
#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*
Hi All, Just a few Hours ago, Microsoft has released the MicrosoftTeams PowerShell Module 4.9.0 to the PowerShell Gallery.
MicrosoftTeams 4.9.0
https://www.powershellgallery.com/packages/MicrosoftTeams/4.9.0
Microsoft Teams PowerShell Release Notes
https://learn.microsoft.com/en-us/MicrosoftTeams/teams-powershell-release-notes Check installed Module and what's available in the PowerShell Gallery
Get-InstalledModule MicrosoftTeams -AllVersions Find-Module MicrosoftTeams As i have two Modules installed i have to uninstall both and then install the current Version of the MicrosoftTeams PowerShell Module
Uninstall-Module MicrosoftTeams Uninstall-Module MicrosoftTeams Install-Module MicrosoftTeams Testing