WhiteboardAdmin 1.12.0 PowerShell Module released
Hi All,
Yesterday Microsoft has released a new Version of the WhiteboardAdmin PowerShell Module to the PowerShell Gallery.
- PowerShell Gallery WhiteboardAdmin 1.12.0
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
Uninstall-PSResource WhiteboardAdmin -Scope CurrentUser
In the end, i had no other choice as to delete the Folder in Windows Explorer C:\Users\a.bohren\OneDrive - Icewolf\Dokumente\WindowsPowerShell\Modules
Get your PowerShell Modules Path with the following command
$env:PSModulePath.Split(";")
Install the PowerShell Module and show installed Version
Install-PSResource WhiteboardAdmin -Scope AllUsers
Get-InstalledPSResource WhiteboardAdmin -Scope AllUsers
List Commands of the Module
Get-Command -Module WhiteboardAdmin
Get the ObjectID of a User
To use the Commands from Whiteboard Admin you need to have the Global Administrator Role.
List the Whiteboards from a User.
Get-Whiteboard -UserId 6db8cdd5-8e93-462d-9907-994406c07f60
Or you can simply use my M365PSProfile Module - find the Documentation here: https://github.com/fabrisodotps1/M365PSProfile/
Install-PSResource -Name M365PSProfile -Scope CurrentUser
Install-M365Module
Regards
Andres Bohren