Jaan Posted March 20, 2020 Posted March 20, 2020 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...
RLR Posted March 20, 2020 Posted March 20, 2020 Are you talking about the google Classroom Teachers group?
Jaan Posted March 20, 2020 Author Posted March 20, 2020 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
RLR Posted March 20, 2020 Posted March 20, 2020 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) }
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