Everything you need to get your scripts running in minutes.
Before you begin, ensure you have the following:
Most admin scripts require specific Advanced Services to be enabled in the Apps Script editor:
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'
};
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.
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.
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.