Jump to content

Recommended Posts

Posted

Hi. I need to provide a solution for students to carry out BTEC course work in School. Students accounts give access O365 Onedrive, teams email etc.We use Active directory and group policy to control accounts. The BTECs need to be worked on for a limited amount of hours in allotted classroom sessions only. They are not allowed to access any other time. They are also not allowed to use the internet. Currently students can access their onedrive and email from home or from elsewhere at any time. I am wondering if anyone has dealt with anything similar and has a solution.

 

Thank you

Posted (edited)

We create separate accounts, and use a script and scheduled tasks to enable and disable the accounts as required. Put them in their own OU.

 

The powershell scripts are:

 

To disable:

 

Get-ADUser -Filter 'Name -like "*"' -SearchBase "" | Disable-ADAccount

 

To enable

 

Get-ADUser -Filter 'Name -like "*"' -SearchBase "" | Enable-ADAccount

 

You can apply GPOs as required to that account to give or block access to shared areas, and your filtering solution should be able to block the Internet for them.

Edited by clareq

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