How to check email account creation date in O365

How  to check email account creation date in O365

In this article we will see that how can we check email account creation date in Office 365 email account. These steps are very easy to get details and for this we need powershell with administrator permission.

Resolution:


We have ran below PowerShell commands to get the mailbox created date . With your permission, we are going ahead and archiving the case.



Please follow all the step by step and hope you will enjoy this article.

Set-ExecutionPolicy RemoteSigned​

$UserCredential = Get-Credential​






$Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://outlook.office365.com/powershell-liveid/ -Credential $UserCredential -Authentication Basic -AllowRedirection​

Import-PSSession $Session -DisableNameChecking​

Get-Mailbox | fl identity, whenmailboxcreated | Out-File C:\filename.txt

Share:

1 comments

Please leave your comments...... Thanks