Forum Discussion

DazzaR's avatar
DazzaR
Iron Contributor
Dec 03, 2019
Solved

How do I find Teams created in last 7 days?

Hi, does anyone have a script they could share that answers this simple question - show me Microsoft Teams created in the last 7* days? I need one that I can run using my role of Teams admin and Shar...
  • VasilMichev's avatar
    Dec 03, 2019

    You can do something like this:

     

    Get-Team | select GroupId | % { Get-UnifiedGroup $_.GroupId | select DisplayName,WhenCreated } | sort WhenCreated

     

    You'll need the Teams module and the ExO cmdlets for the above example to work.

Resources