Skip to content

Instantly share code, notes, and snippets.

View guillaumemeyer's full-sized avatar

Guillaume Meyer (The Opinionated Man) guillaumemeyer

View GitHub Profile
@guillaumemeyer
guillaumemeyer / whatstack-tracking-embed-code.html
Last active July 6, 2023 13:00
WhatStack tracking embed code
<!-- Start of WhatStack Tracking Embed Code -->
<script async defer type="text/javascript" id="ws-script-loader" src="https://app.whatstack.io/js/tracking.min.js"></script>
<!-- End of WhatStack Tracking Embed Code -->
@guillaumemeyer
guillaumemeyer / export-team-meeting-participants.js
Last active July 6, 2023 13:00
Exports the participants of a Microsoft Teams meeting as a CSV file
// ******************************************************************************************************************************
// Abstract:
// This script is just a quick hack to export the participants of a team meeting as a CSV file without administrator permissions.
//
// Usage:
// 1. Open your meeting
// 2. Click on the participants list to open the popover
// 3. Open your browser console
// 4. Copy and paste all the content of this script to the console and type "Enter"
// 5. The CSV file download should start automatically
@guillaumemeyer
guillaumemeyer / export-team-membership-roster.js
Last active June 25, 2024 17:11
Exports the owners and members of a Microsoft Teams team as a CSV file
// ****************************************************************************************************************************
// Abstract:
// This script is just a quick hack to export the owners and members of a team as a CSV file without administrator permissions.
//
// Usage:
// 1. Open your team
// 2. Select "Manage team" from its menu
// 3. Select the "Members" tab
// 4. Expand the "Owners" and "Members and guests" sections
// 5. Make sure to scroll down to the end of the owners and members lists to include all of them in your export (As the members are loaded on demand)