Finding Default Outlook Profile

by Nov 6, 2013

PowerShell can access COM objects like Outlook Application. These two simple lines return the current Outlook profile:

$outlookApplication = New-Object -ComObject Outlook.Application
$outlookApplication.Application.DefaultProfileName 

Twitter This Tip! ReTweet this Tip!