Setup Center

Everything you need to get your scripts running in minutes.

✅ Prerequisites

Before you begin, ensure you have the following:

  • Super Admin access to the Google Workspace console.
  • Access to Apps Script (script.google.com).
  • A Google Cloud Project (standard for all Apps Scripts).
1

Enable APIs

Most admin scripts require specific Advanced Services to be enabled in the Apps Script editor:

  1. Open your Apps Script project.
  2. Click the + icon next to "Services" on the left sidebar.
  3. Scroll down and select Admin SDK API.
  4. Click "Add".
  5. Repeat for Admin Reports API (if using Inactive User scripts).
2

Configuration

Every script has a CONFIG object at the very top. You rarely need to edit the core code.

const CONFIG = {
    // Check your Admin Console for this ID
    TARGET_SKU_ID: '1010020020', 
    
    // Who gets the report?
    EMAIL_RECIPIENTS: 'admin@company.com'
};

Frequently Asked Questions

Where do I find my SKU ID?

Go to the Admin Console > Billing > Subscriptions. The SKU ID is often found in the URL or can be retrieved using the License Manager API explorer.

Why does the script say "Time Out"?

Google Apps Script has a hard limit of 6 minutes per execution. If you have thousands of users/groups, you must use our "Batch Processing" versions, which save progress and resume automatically.

Is my data safe?

Yes. These scripts run entirely within your own Google environment. No data is sent to us or any third-party servers. You can view the full source code to verify this.