Skip to content

Instantly share code, notes, and snippets.

@ypcrts
Last active February 26, 2020 19:32
Show Gist options
  • Save ypcrts/b147dc80c133832718cd1b4118049552 to your computer and use it in GitHub Desktop.
Save ypcrts/b147dc80c133832718cd1b4118049552 to your computer and use it in GitHub Desktop.
Outlook Office 365 Distribution List to CSV Scraper

Office 365 office.com Distribution List Scraper using Browser console

This grabs the distribution list members and email addresses, outputting them as CSV

(function () {
let o = new Set;
document.querySelectorAll("._2POCa20x32ywlJ3tfXUEbM").forEach(row=>{
const items = row.querySelectorAll('div');
o.add(items[0].innerText + "," + items[1].innerText);
});
console.log([].join.call([...o], "\n"));
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment