Friday, 18 October 2019

How to export user's managers in O365?


Or, PowerShell command to export mailbox's managers in CSV format in O365

You can use the following command to export the user name along with the assigned manager details in .csv format.
------------------------------------------------------------------------------------------------
Get-user | select displayname, *manager* | Export-Csv -Path c:\managers.csv
-----------------------------------------------------------------------------------------------

Note: Please make sure you are connected to the O365 PowerShell session.

Cheers, please write me back if you have any query or feedback.

Wednesday, 8 May 2019

How to check email message header in Gmail or GSuite?


Or, How to download email message header in Gmail or GSuite?
Or, Message Header Download Procedure

Description: In this article, you would learn ‘how to download email message header in GSuite or Gmail?’. The email message header is used for analyzing and tracing the email source, legitimacy of the email etc…


Steps:
Login to Gmail > Click to open the Affected Email






Click on three dots to see all available options > Click on Show Original


Click on ‘Download Original 




The downloaded text file will contain all the information of email the source you are looking for.

Cheers, please write me back if you have any query or feedback.