Quantcast
Channel: TechNet Blogs
Viewing all articles
Browse latest Browse all 36188

How to get the list for SMTP address and Last connection time for all the users

$
0
0

Summary
This article describes how to use PowerShell Commandlet to get the list for SMTP address and Last connection time for all the users.

 

Steps to implement the request

Step 1: Run the following to authenticate yourself and import PowerShell commands to your local session:

$LiveCred = Get-Credential
$Session = New-PSSession -ConfigurationName Microsoft.Exchange-ConnectionUri https://ps.outlook.com/powershell/ -Credential $LiveCred -Authentication Basic -AllowRedirection
Import-PSSession $Session

 


Image 1

Step 2: Run the Commandlet to get the SMTP address and Last connection time for all the users

Commandlet to get SMTP address:
    Get-Mailbox | fl EmailAddresses, identity > C:\Emailaddress.csv

 


Image 2

 
Image 3

 
Image 4

 Commandlet to get Last connection time:
    Get-Mailbox -ResultSize unlimited | Get-MailboxStatistics | select-object identity,lastlogontime,lastlogofftime,DisplayName | sort-object DisplayName -descending | export-csv C:\Lastlogontime.csv

 
 Image 5

 
Image 6

  
Image 7

 Enjoy Wink


Viewing all articles
Browse latest Browse all 36188

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>