Jump to content

Recommended Posts

Posted

So when I sign into my admin centre I have all users in a big list there.

 

Is there any way I can order them into folders, like Staff, Students etc.?

 

Or is the only way to sync with AD? I do not do this currently.

 

I'm concerned that it is going to be difficult to delete leavers!

Posted
You can create custom filters (these are called views in the old admin portal), which might be possible depending on what information you included when you created the accounts originally.
  • Thanks 1
Posted
You can create custom filters (these are called views in the old admin portal), which might be possible depending on what information you included when you created the accounts originally.

 

I have staff and pupils. Unfortunately doesn't help when it comes to deleting a cohort. Maybe I should have thought about this before creating them all ;)

Posted

Right so in le future - put the year in the department.

 

Thanks guys!

 

- - - Updated - - -

 

Or change your user name convention to include year of entry? That way a partial search will get you 20-30 a page.

 

Nah the kids can barely spell their names without putting a number in there too!

Posted (edited)
Yeah while I'm quiet I might have a quick run through and add the Class into the department. Will make it easier for the future! Edited by Joanne
Posted

The below Powershell code will update the depart from a CSV file. The first column in the CSV needs to have the header login and should contain the email address the user logs in with. The second column should have the header department and needs to contain whatever value you want the department to be set to. Change the variable $CSVPath in the code below to point to the location of the CSV file.

 

You might also need to install the Microsoft Online Services Sign-in Assistant which can be found here https://www.microsoft.com/en-gb/download/details.aspx?id=28177

 

### Enter path to CSV
$CSVPath = "C:\Scripts\Users.csv"

### Import the CSV
$CSVImport = Import-CSV $CSVPath

### Connect to O365
Connect-MsolService

### Run through each user in the CSV and update their department
$CSVImport | ForEach {Set-Msoluser -UserPrincipalName $_.login -Department $_.department }

Posted
if you have it through BTLS they have already told me we cannot use AD sync as that is not part of the package we are on!

 

Sounds like they're wrong about that, all schools have that option.

Posted (edited)
Once it's installed and setup it tends to require very little support. The latest version even updates automatically. Edited by Matt_Renato
Typo
Posted
Sounds like they're wrong about that, all schools have that option.

 

I know I can see the option in the panel hence the exclamation. How far you'd get I wasn't willing to try just in case.

Posted

Hi

This is really helpful for me also thank you and putting info in the department field is a great easy idea.

So my problem is like others I don't have it in currently and would like to use the powershell option to import a csv file with this info in it. I am afraid I am falling at the first hurdle.

 

When I try the login it says I have invalid credentials (see screen shot) however I have entered the correct details and double-checked. Has anyone else experienced this issue? Am I missing something obvious?

 

Thanks

 

Azure connect error.JPG

Posted
Hi

This is really helpful for me also thank you and putting info in the department field is a great easy idea.

So my problem is like others I don't have it in currently and would like to use the powershell option to import a csv file with this info in it. I am afraid I am falling at the first hurdle.

 

When I try the login it says I have invalid credentials (see screen shot) however I have entered the correct details and double-checked. Has anyone else experienced this issue? Am I missing something obvious?

 

Thanks

 

[ATTACH=CONFIG]36426[/ATTACH]

 

I logged in using the O365 admin account e-mail address and the password for that...

Posted
Thanks, that is what I have been trying with and it logons to the web portal fine so I am using the correct details it just isn't working via the powershell command.

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...