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 some minor fixes.
Microsoft.Graph 1.12.2
https://www.powershellgallery.com/packages/Microsoft.Graph/1.12.2 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, Microsoft has released a new Version of the SharePoint Online PowerShell Module.
Microsoft.Online.SharePoint.PowerShell 16.0.22921.12000 https://www.powershellgallery.com/packages/Microsoft.Online.SharePoint.PowerShell/16.0.22921.12000
Check what Module Version is installed and what's available from the PowerShell Gallery
Get-InstalledModule Microsoft.Online.SharePoint.PowerShell
Find-Module Microsoft.Online.SharePoint.PowerShell
Uninstall the old Module and install the new Version
Uninstall-Module Microsoft.Online.SharePoint.PowerShell
Install-Module Microsoft.Online.SharePoint.PowerShell
Get-InstalledModule Microsoft.Online.SharePoint.PowerShell
Regards Andres Bohren
Hi All, I've updated my Microsoft 365 Apps for Enterprise to 2209. There are several lightly new Designs to see... Outlook has also a refreshed Design and shows Tasks and ToDo in the Navigation Pane on the left Top.
The ToDo does not work here
I like the new Design of OneNote
Regards Andres Bohren
Hi All, A few days ago the Microsoft Teams PowerShell Module 4.7.1-Preview was released. For me a long awaited Feature with Azure AD App Authentication with a Certificate is now partly possible.
MicrosoftTeams 4.7.1-preview
https://www.powershellgallery.com/packages/MicrosoftTeams/4.7.1-preview Microsoft Teams PowerShell Release Notes
https://learn.microsoft.com/en-us/MicrosoftTeams/teams-powershell-release-notes Application-based authentication in Teams PowerShell Module
https://learn.microsoft.com/en-us/MicrosoftTeams/teams-powershell-application-authentication
To install the Preview Side by Side with the 4.7.0 Module you need to add the -Force Parameter
Get-InstalledModule MicrosoftTeams Find-Module MicrosoftTeams -AllowPrerelease Install-Module MicrosoftTeams -AllowPrerelease -Force Get-InstalledModule MicrosoftTeams -AllVersions
Hi All, Microsoft has released another Version of theyr MSIdentityTools PowerShell Module to the Powershell Gallery.
MSIdentityTools 2.0.21
https://www.powershellgallery.com/packages/MSIdentityTools/2.0.21
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
To see what commands are available use the following command Get-Command -Module MSIdentityTools
It's best to use PowerShell 7 with that Module
Get-MsIdAuthorityUri Regards Andres Bohren
Hi All, Recently Citrix has released a new version of theyr Citrix Workspace App for Windows.
Citrix Workspace app 2209 for Windows
https://www.citrix.com/de-de/downloads/workspace-app/windows/workspace-app-for-windows-latest.html Release Notes
https://docs.citrix.com/en-us/citrix-workspace-app-for-windows/about.html
This time i only noticed the Update Information in the Notification Center
As you can se the Autoupdate has sucessfully updated to the newest version
Regards Andres Bohren
Hi All, This Weekend i received an update for my OnePlus 9 Android Smartphone. It includes the Android 2022.08 Security Updates and some new Features for the Camera.
OxygenOS 12 C.64 update for OnePlus 9 and OnePlus 9 Pro
https://community.oneplus.com/thread?id=1154557095153500167
Regards Andres Bohren
Hi All, Microsoft.Graph 1.12.0
https://www.powershellgallery.com/packages/Microsoft.Graph/1.12.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
#Run Script directly from GitHub
$ScriptFromGitHub = Invoke-WebRequest "https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/main/ExchangeOnline/GraphAPI/Cleanup-GraphModules.ps1"
Invoke-Expression $($ScriptFromGitHub.Content) It takes a while until all Modules are installed. Wait until "Cleanup finished" is shown
Hi All, Yesterday the Windows 11 22H2 Update was released by Microsoft.
Available today: The Windows 11 2022 Update
https://blogs.windows.com/windowsexperience/2022/09/20/available-today-the-windows-11-2022-update/ How to get the Windows 11 2022 Update
https://blogs.windows.com/windowsexperience/2022/09/20/how-to-get-the-windows-11-2022-update/ What's new in Windows 11, version 22H2
https://learn.microsoft.com/en-us/windows/whats-new/whats-new-windows-11-version-22h2
I checked Windows Update and it was already there. I clicked on "Update now"
The download started in the background
Didn't take long until it was ready to reboot
The whole process took less than 30 Minutes.
Hi All, Finally the ExchangeOnlineManagement PowerShell Module V3 has been released. You can find the newest Module in the PowerShell Gallery
ExchangeOnlineManagement 3.0.0
https://www.powershellgallery.com/packages/ExchangeOnlineManagement/3.0.0
It is REST Based and does not require WinRM Basic Authentication on the Client anymore
Get Installed Module and what is available in the PowerShell Gallery
Get-InstalledModule ExchangeOnlineManagement Find-Module ExchangeOnlineManagement Uninstall the old Module and install the new Module
Uninstall-Module ExchangeOnlineManagement -Force Install-Module ExchangeOnlineManagement Get-InstalledModule ExchangeOnlineManagement