techie08 Posted November 5, 2014 Posted November 5, 2014 Hi Does anyone know a powershell script i can run to add the student advantage office licences to students? I dont to waste time adding 20 at a time. I believe this can be done by referencing a csv file? Thank
SteveM555 Posted November 5, 2014 Posted November 5, 2014 Do you have a different domain for students?
techie08 Posted November 5, 2014 Author Posted November 5, 2014 Do you have a different domain for students? No. The staff and students are both on the same domain
SteveM555 Posted November 5, 2014 Posted November 5, 2014 Ah ok, We have a sub-domain for students and used the following: Get-MsolUser -DomainName student.school.com -All | Set-MsolUserLicense -AddLicenses YOUR_ORG:OFFICESUBSCRIPTION_STUDENT If you can find a CSV import script you can pipe the Set-MsolUserLicense with it and apply it to a list of users. To list the licenses you have use: Get-MsolAccountSku It should list something like YOURSCHOOL:OFFICESUBSCRIPTION_STUDENT - This is the one you'll want to use. Hope that helps a bit. If you haven't found anything by tomorrow, I've got them all saved at work and I'll put it together for you.
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now