Jump to content

Recommended Posts

Posted

Is there a away i can get google to email me when a staff members requests an invite to google classroom?

 

I have to manually check the pending requests (in Google groups) at the moment and i feel i'm not actioning them in time...

Posted

Yes i have to approve the teachers that request access to the google classroom group.

 

Just a i have manually check for any pending teachers for the group.

 

I have it set to anybody in the domain can ask to join, but it needs approve before access is granted to Google classroom as a teacher

 

cheers

Posted

I think the issue you will have if you allow anyone to join is you might get students join. I have a powershell script that runs using GAM that will add all staff to this group once a day:

 

Get-ADGroupMember -Identity "STAFF GROUP FROM AD" -Recursive | Get-ADUser -Properties Mail | Select-Object Mail | Export-CSV -Path C:\Export\location\nameoffile.csv -NoTypeInformation$list

 

Import-Csv -Path C:\Export\Location\nameoffile.csv

 

cd C:\gam

 

foreach ($entry in $list){

.\gam update group [email protected] add member user $($entry.mail)

}

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