A modern graphical user interface (GUI) for GAM7 that simplifies common Google Workspace administrative tasks. Specifically designed for K-12 educational environments, this tool provides an intuitive, point-and-click interface for managing email operations, users, groups, and more, though it can be utilized anywhere Google Workspace is in use.
- Delete Messages - Remove emails by query with optional date ranges
- Manage Delegates - Add or remove mailbox delegation access
- Manage Signatures - Set or remove HTML email signatures
- Manage Forwarding - Enable or disable email forwarding
- Manage Labels - Create or delete Gmail labels
- Manage Filters - Create or delete email filters with flexible criteria
- Create Users - Single or bulk user creation from CSV
- Update User Info - Update names, titles, phone numbers, and other attributes
- Suspend/Unsuspend Users - Manage user account status
- Reset Passwords - Individual or bulk password resets
- Manage Organizational Units - Move users between OUs
- Manage Aliases - Add or remove email aliases
- Change Primary Email - Update user primary email addresses
- Create/Delete Groups - Single or bulk group management
- Manage Members - Add or remove group members
- Manage Roles - Assign member, manager, or owner roles
- Update Group Settings - Modify group configuration
- Manage Group Aliases - Add or remove group email aliases
- Change Owners - Transfer group ownership
- Manage Calendar Permissions - Share calendars with users/groups with customizable access levels (Reader, Writer, Owner)
- Create/Delete Calendars - Create new calendars or delete existing ones
- View Calendar Information - Display calendar details, URLs, and permission lists
- Export Calendar Events - Export events to CSV in Google Calendar import format with date range selection
- Import Calendar Events - Import events from CSV files with timezone support
- Supports Google Calendar CSV format (Subject, Start Date/Time, End Date/Time, etc.)
- Configurable timezone selection (15+ timezones including US, Europe, Asia, Australia)
- Individual event creation with progress tracking
- Handles both timed and all-day events
- Process single users, groups, all users, or CSV lists
- Multi-select from workspace user list with fuzzy search
- Real-time progress tracking
- Detailed success/failure reporting
- Comprehensive error logging
- Google Workspace Reports
- Drive Operations
- Security Auditing (Non-Domain ACLs)
GAM7 must be installed and configured:
- Install GAM7 from: https://github.com/GAM-team/GAM
- Authenticate GAM:
gam oauth create - Verify installation:
gam info domain
Important Notes:
- This application is a GUI wrapper for GAM7 commands
- GAM7 is NOT included and must be installed separately
- GAM7 must be in your system PATH
- You must have Google Workspace admin access
- Operating System: Windows, macOS, or Linux
- Python: 3.8 or higher (for running from source)
- GAM7: Latest version recommended
- Display: GUI requires X11/display server (tkinter)
# Clone the repository
git clone https://github.com/dlashock/GAM_CLI_Tool.git
cd GAM_CLI_Tool
# Install dependencies (optional, only for building)
pip install -r requirements.txt
# Run the application
python3 main.pyNote: Platform-specific installers (Windows .exe, macOS .app, Linux binary) will be available in future releases.
-
Launch the application
python3 main.py # or double-click GAM_Admin_Tool.exe -
Select an operation category (e.g., "Email Operations")
-
Choose target users:
- Single User: Enter one email address
- Group: Enter group email
- All Users: Processes all workspace users
- CSV File: Upload a CSV with email column
- Select from List: Multi-select from fetched users
-
Configure operation parameters (varies by operation)
-
Click Execute and monitor progress
-
Review results in the progress window
For bulk operations using CSV files:
Requirements:
- Header row must contain
emailcolumn (case-sensitive) - One email address per row
- UTF-8 encoding
For detailed build instructions, see packaging/README.md
# Install PyInstaller
pip install pyinstaller
# (Optional) Create application icon
python3 packaging/create_icon.py
# Build the executable
pyinstaller packaging/build.spec
# Output will be in dist/GAM_Admin_Tool.exe (Windows)
# or dist/GAM_Admin_Tool (macOS/Linux)- Windows: Produces
.exeexecutable - macOS: Produces
.appbundle or binary - Linux: Produces standalone binary
Note: Build on the target platform (Windows build must be done on Windows, etc.)
For platform-specific build instructions, troubleshooting, and distribution guidance, see the packaging documentation.
Cause: You have GAMADV-XTD3 instead of GAM7 Solution: Upgrade to GAM7 from https://github.com/GAM-team/GAM
Cause: GAM has not been authorized to access your Google Workspace Solution:
gam oauth create
# Follow the authentication prompts in your browser
gam info domain # Verify authenticationCause: GAM7 is not in your system PATH Solution:
- Windows: Add GAM7 directory to PATH environment variable
- macOS/Linux: Add GAM7 to PATH in
.bashrcor.zshrc - Verify with:
which gam(macOS/Linux) orwhere gam(Windows)
Cause: Permissions or GAM command errors Solution:
- Click "View Error Log" button in the application
- Check
gam_tool_errors.login application directory - Verify GAM command works in terminal:
gam user [email protected] info
Cause: tkinter not installed Solution:
- Ubuntu/Debian:
sudo apt-get install python3-tk - Fedora:
sudo dnf install python3-tkinter - macOS: tkinter included with Python
- Windows: tkinter included with Python
Cause: Normal for large user lists Note: The application uses threading to stay responsive. Large operations may take time but the GUI should remain interactive. Monitor the progress bar and results window.
Q: Does this replace GAM7? A: No, this is a GUI wrapper that makes GAM7 easier to use. GAM7 must be installed.
Q: Can I run this on a server without a display? A: No, this requires a graphical environment (X11/display server). For headless operation, use GAM7 directly.
Q: Is my Google Workspace data safe? A: Yes. This tool only executes GAM7 commands. It has the same access and security as GAM7. Your credentials stay local.
Q: Can I use this with GAMADV-XTD3? A: No, GAM7 is required. Please upgrade to GAM7.
Q: What Python version do I need? A: Python 3.8 or higher. Python 3.10+ recommended.
Q: Can I contribute or add features? A: Yes! This is an open-source project. Fork the repository and submit pull requests with your enhancements.
- GAM7 Documentation: https://github.com/GAM-team/GAM/wiki
- GAM7 Installation: https://github.com/GAM-team/GAM
- Report Issues: GitHub Issues
- GAM Community: https://groups.google.com/g/google-apps-manager
MIT License - See LICENSE file for details
- GAM Team for creating and maintaining GAM7
- Google Workspace for providing comprehensive admin APIs
- Python tkinter for the cross-platform GUI framework
- Issues: GitHub Issues
- Discussions: GitHub Discussions
- GAM Support: https://groups.google.com/g/google-apps-manager
Note: This tool is not officially affiliated with Google or the GAM project. It is an independent GUI wrapper built by the community.