Learning and Sharing
  • Home
  • Blog
  • Linux
  • macOS
  • Virtualization
    • VMware
    • VirtualBox
  • Windows
    • Windows 11
    • Windows 10
    • Windows Server
  • Series
    • Symantec
    • Intune
    • Microsoft Azure
    • Powershell
    • VirtualBox
    • VMware
    • PowerShell Learning
    • Microsoft Graph
  • More
    • Auto Installation
    • AEC Installation
  • Contact
No Result
View All Result
  • Home
  • Blog
  • Linux
  • macOS
  • Virtualization
    • VMware
    • VirtualBox
  • Windows
    • Windows 11
    • Windows 10
    • Windows Server
  • Series
    • Symantec
    • Intune
    • Microsoft Azure
    • Powershell
    • VirtualBox
    • VMware
    • PowerShell Learning
    • Microsoft Graph
  • More
    • Auto Installation
    • AEC Installation
  • Contact
No Result
View All Result
No Result
View All Result

How to Determine the Date of Creation of an Azure Tenant?

January 3, 2024
in Azure Active Directory, Blog, Microsoft 365
0
ADVERTISEMENT

Table of Contents

Finding the age of a Microsoft 365 tenant isn’t an important administrative operation. However, understanding how to retrieve this information (if asked) is an interesting question, which is why we spent several hours playing around with PowerShell and the Microsoft Graph to figure out how to answer the question.

Method 1: Using Teams admin center

In the Microsoft Teams admin center, the tenant creation date appears on a card displayed on its home screen. The Teams admin center is the only Microsoft 365 portal that shows this information. Why the Teams developers thought that it was useful to highlight the tenant creation date is unknown. 

QDOheHtcHmV93hlgBxovWwCbHk7CQtEdplKgRRtr9aSnEpqa1ZHx1vp0HKji

Opening an administrative portal is no challenge. We suggest several alternate methods to retrieve the tenant creation date. It seemed like fun to try some of these methods against my tenant. Here’s what I found.

Method 2: Using Exchange Online PowerShell

If you’ve used Exchange Online from the start, you can check the creation date of the Exchange organization configuration object, created when an administrator enables Exchange Online for the first time.

1️⃣ To connect to Exchange Online PowerShell, you need to install the required PowerShell module. If it’s been installed, skip to the next step. 

Install-Module -Name ExchangeOnlineManagement

2️⃣ Run the below command then sign in using an administrative account to connect to Exchange Online PowerShell:

Connect-ExchangeOnline

3️⃣ Once connected, the tenant creation date can be retrieved using the Get-OrganizationConfig cmdlet.

Get-OrganizationConfig | select WhenCreated
WhenCreated
-----------
7/13/2023 11:08:32 AM

Method 3: Using Microsoft Graph PowerShell SDK

Microsoft 365 stores information for each tenant in the Microsoft Graph, and it’s the Graph which is the source for the Teams admin center. We can retrieve the same information by running the Get-MgOrganization cmdlet. The createdDateTime property returned in the organization settings is what we need.

# Install the Microsoft Graph module 
Install-Module Microsoft.Graph.Identity.DirectoryManagement

Connect to Microsoft Graph PowerShell with required scope (permission):

Connect-Graph -Scopes Organization.Read.All

Here’s the PowerShell code to fetch tenant organization settings using Graph PowerShell.

Get-MgOrganization | select CreatedDateTime
CreatedDateTime
---------------
7/13/2023 9:09:54 AM

Method 4: Using Graph Explorer

The last way, instead of using Graph PowerShell, we can use Graph Explorer then query to the below resource.

https://graph.microsoft.com/v1.0/organization
  1. Visit https://aka.ms/ge
  2. Sign-in using the global admin account
  3. Enter the endpoint URL then click the Run query button.
d2KtEG3Vcq2IEucYoGLH3AFnP9Svj6fQEWoUYRwCEmMyXMSsOLZ50z1hWE12

From the response preview, find the createdDateTime and you’re done.

ADVERTISEMENT

Not a reader? Watch this related video tutorial:

5/5 - (1 vote)
Previous Post

When was My Microsoft 365 Tenant Created?

Next Post

How to Remove OneDrive from Save As Option in Microsoft Office Apps

Related Posts

Running Hyper-V and VMware Workstation on The Same Machine

August 15, 2024

How to Uninstall All Autodesk Products At Once Silently

July 29, 2024
Ftr5

How to Uninstall the Autodesk Genuine Service on Windows

July 29, 2024
Ftr19

How to Fix Windows Cannot Read the ProductKey From the Unattend Answer File in VirtualBox

July 26, 2024
Ftr25

How to Update Windows Terminal in Windows 10/11

July 26, 2024

How to Disable The Beep Sound in WSL Terminal on Windows

July 26, 2024

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Recent Posts

  • How To Turn On uBlock Origin Extension in Chrome (2025)
  • Images Hidden Due To Mature Content Settings In CivitAI
  • Azure OpenAI vs Azure AI Hub, How to Choose the Right One for Your Needs

Categories

Stay in Touch

Discord Server

Join the Discord server with the site members for all questions and discussions.

Telegram Community

Jump in Telegram server. Ask questions and discuss everything with the site members.

Youtube Channel

Watch more videos, learning and sharing with Leo ❤❤❤. Sharing to be better.

Newsletter

Join the movement and receive our weekly Tech related newsletter. It’s Free.

General

Microsoft Windows

Microsoft Office

VMware

VirtualBox

Technology

PowerShell

Microsoft 365

Microsoft Teams

Email Servers

Copyright 2025 © All rights Reserved. Design by Leo with ❤

No Result
View All Result
  • Home
  • Linux
  • Intune
  • macOS
  • VMware
  • VirtualBox
  • Powershell
  • Windows 10
  • Windows 11
  • Microsoft 365
  • Microsoft Azure
  • Microsoft Office
  • Active Directory

No Result
View All Result
  • Home
  • Linux
  • Intune
  • macOS
  • VMware
  • VirtualBox
  • Powershell
  • Windows 10
  • Windows 11
  • Microsoft 365
  • Microsoft Azure
  • Microsoft Office
  • Active Directory