Skip to content

Instantly share code, notes, and snippets.

View SysC0mp's full-sized avatar

K. Eck SysC0mp

  • Germany
View GitHub Profile
@michaelwhyte
michaelwhyte / google-calendar-bulk-delete.gs
Last active November 13, 2023 16:57
Bulk delete Google calendar events
function delete_events()
{
// Copy and Paste this script at https://script.google.com and then run it
// This script modified from code found at this Stackoverflow question and answer:
// https://webapps.stackexchange.com/questions/19513/how-to-delete-all-events-on-many-dates-all-at-once-but-not-the-whole-calendar-in
var fromDate = new Date(1995,0,1,0,0,0);
var toDate = new Date(2015,0,1,0,0,0);