返回列表 发帖

[转载代码] [PowerShell每日技巧]获取默认的Outlook配置文件(20131106)

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.DefaultProfileNameCOPY
http://powershell.com/cs/blogs/tips/archive/2013/11/06/finding-default-outlook-profile.aspx

返回列表