Link to home
Start Free TrialLog in
Avatar of exchsvr
exchsvr

asked on

Assign specific feature of product plan in O365

Via Powershell, how can i enable or disable only the Exchange feature of the O365 product license?  For example, in the screenshot, i want to disable sway.  Is this possible?User generated image
ASKER CERTIFIED SOLUTION
Avatar of Vasil Michev (MVP)
Vasil Michev (MVP)
Flag of Bulgaria image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
You can use below cmdlets to do this.

For all Users :

Get-MsolUser | Set-MsolUserLicense –LicenseOptions $License_object_name

Or as mentioned above you can refer below link

https://docs.microsoft.com/en-us/office365/enterprise/powershell/disable-access-to-services-with-office-365-powershell

BR
Kundan
Avatar of exchsvr
exchsvr

ASKER

Exactly what i was looking for,  thanks!