Jump to content

Recommended Posts

Posted

Hi folks,

 

I had a devil of a job getting Lync (the client app) to work with our Smoothwall, and then spotted that a version of it appears under the category of IM in Office 365.

 

I'm guessing that having IM for students is going to be a problem, and I can't block it, like I can with the Lync client.

 

I also can't spot any way of turning it off in Office 365 Admin.

 

Is it possible to disable it?

 

TIA

Posted

Shucks. I could have sworn the Users > Active Users section allowed you to view up to 500 users at a time. Now it only lets you select 20 at a time.

 

Is there an easy way to remove the license from 1,200 users?!

Posted
You can do this using Powershell as well, which should save you some time @EduTech - whats the syntax?

 

This blog post will also help

http://blog.atkinson-it.com/?p=149

 

I think the following will work:

 

Export the users to CSV in the first instance, and then you can do the following {You really only need the UserPrincipalName Header}

 

$AccountSkuID = "Insert License SKU Here"

$LicenseOption_NoLync = New-MsolLicenseOptions -AccountSkuId $AccountSkuID -DisabledPlans MCOSTANDARD

$Users = Import-Csv c:\Users.csv

$Users | ForEach-Object {

Set-MsolUserLicense -UserPrincipalName $_.UserPrincipalName -AddLicenses $AccountSkuId -LicenseOptions $LicenseOption_NoLync

}

 

I don't have chance to test this, but try it on a couple of users first.

 

James.

  • Thanks 1
Posted
The problem is we're federated via RM Unify, so I don't think we can connect directly into Office 365 from the DC.

 

I am not sure if I follow? You can connect to the Powerless Endpoint by authenticating with a Global Administrator Account from any machine.

 

James.

  • Thanks 1
Posted
Ahhh, I assumed because it was federated by something odd, that I would not be able to use Powershell.

 

It's amusing that you call RM Unify = Odd :-)

 

James.

  • Thanks 1
Posted
I think the following will work:

 

Export the users to CSV in the first instance, and then you can do the following {You really only need the UserPrincipalName Header}

 

$AccountSkuID = "Insert License SKU Here"

$LicenseOption_NoLync = New-MsolLicenseOptions -AccountSkuId $AccountSkuID -DisabledPlans MCOSTANDARD

$Users = Import-Csv c:\Users.csv

$Users | ForEach-Object {

Set-MsolUserLicense -UserPrincipalName $_.UserPrincipalName -AddLicenses $AccountSkuId -LicenseOptions $LicenseOption_NoLync

}

 

I don't have chance to test this, but try it on a couple of users first.

 

James.

 

Yep, that's looks correct to me. Again, definitely test to be sure (and this also assumes that you have all the plans set and want to remove only the Lync one)

  • Thanks 1

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now



×
×
  • Create New...