Loading |
VBScript |
JavaScript |
Powershell |
Search Options: Get a List of All the Senders Email Addresses in an Outlook FolderContent of Get a List of All the Senders Email Addresses in an Outlook Folder.vbsMD5 Hash: 94D681F59A796F0D2C0802B878C8F852 |
||
Const olFolderInbox = 6
Set objOutlook = CreateObject("Outlook.Application") Set objNamespace = objOutlook.GetNamespace("MAPI") Set objFolder = objNamespace.GetDefaultFolder(olFolderInbox) Set colItems = objFolder.Items For Each objItem in colItems Wscript.Echo objItem.SenderEmailAddress Next | ||
© 2008 - 2013 Boris Toll :: Scripts available: 6.481 :: :: scriptbox.toll.at :: :: powered by www.toll.at :: |