Click here to Skip to main content
15,889,992 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
Afternoon All,

I've been asked to remove applications from office 365, specifically outlook via powershell and the msol service. But i cannot see any information about this?

What I have tried:

I can remove "services" such as "MICROSOFTBOOKINGS" however, how did you disable individual apps in the service?

For example to remove bookings i use the following

  $LO = New-MsolLicenseOptions -AccountSkuId *****:STANDARDWOFFPACK_IW_FACULTY -DisabledPlans "MICROSOFTBOOKINGS"
Set-MsolUserLicense -UserPrincipalName $Staff.UserPrincipalName -AddLicenses ****:STANDARDWOFFPACK_IW_FACULTY -LicenseOptions $LO 


Any advice appreciated.

-Andrew
Posted
Updated 1-Mar-21 11:31am
v3
Comments
ZurdoDev 13-Mar-20 9:58am    
This isn't really a code question so you might have more success on a technical support type of site.
aparrygordontafe 15-Mar-20 18:04pm    
Well, powershell requires that you code the script and i need to do it via a powershell, not via the administration interface. I will update my example with the code to exclude microsoft bookings.

1 solution

​$LO = New-MsolLicenseOptions -AccountSkuId *****:STANDARDWOFFPACK_IW_FACULTY -DisabledPlans "MICROSOFTBOOKINGS"

The Script should look like this
Set-MsolUserLicense -Userprincipalname $UPN -LicenseOptions $LO
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900