User Profile
AndresBohren
Copper Contributor
Joined Feb 28, 2020
User Widgets
Recent Discussions
Re: Get permissions for all folders in a mailbox: PS
I've written a PowerShell Module that can Export/Add/Remove MAPI (Folder) Permissions https://www.powershellgallery.com/packages/Icewolf.exchange.mapi/0.3.0-Preview2 https://github.com/BohrenAn/GitHub_PowerShellScripts/tree/main/Icewolf.Exchange.MAPI Regards Andres Bohren8.7KViews2likes1CommentRe: Remove services from O365 license: PowerShell
MSOL and AzureAD Modules should not be used anymore. Migrate to Microsoft Graph https://blog.icewolf.ch/archive/2021/11/29/hinzufugen-und-entfernen-von-m365-lizenzen-mit-microsoft-graph-powershell.aspx #Lizenz vom Benutzer anzeigen Get-MgUserLicenseDetail -UserId email address removed for privacy reasons #Lizenz entfernen Set-MgUserLicense -UserId email address removed for privacy reasons -AddLicenses @() -RemoveLicenses @('e43b5b99-8dfb-405f-9987-dc307f34bcbd') #PhoneSystem Set-MgUserLicense -UserId email address removed for privacy reasons -AddLicenses @{SkuId = 'e43b5b99-8dfb-405f-9987-dc307f34bcbd'} -RemoveLicenses @() #PhoneSystem2.1KViews1like0Comments
Recent Blog Articles
No content to show