Bulk Add Teachers to Google Classroom Classes

During the previous task you will have Bulk Created Google Classroom Classes, this following scenario addresses the issue of a shared class whereby two or more teachers are assigned to the same class i.e.

In an English GCSE class that has 8 lessons a fortnight, Teacher A has 6 hours and Teacher B has 2 hours.


The Batch Script will allow you to bulk add Teachers to the Google Classroom Classes.

You will need to add the below information to the CSV:

  • class
  • teacher

BAT-AddTeachersToClasses.csv

BAT-AddTeachersToClasses.csv

BAT-AddTeachersToClasses.bat

BAT-AddTeachersToClasses.bat

Code

@ECHO OFF
CLS
ECHO -----------------------------------------
ECHO Add Teachers To Classes in YourSchool.com
ECHO -----------------------------------------
cd C:\Gam\
gam csv BAT-AddTeachersToClasses.csv gam course ~class add teacher ~teacher 
ECHO -----------------------------------------------------
ECHO Finished Adding Teachers To Classes in YourSchool.com
ECHO -----------------------------------------------------
Pause