Breakthrough BLISS!! I love this.

I was able to craft a script that extracts the email addresses from an xch5.5 export. Beats the heck out of trying to do this manually for hundreds of users. Thanks for the guidance Les, you are a gem today!

Code:
 
Break On
$SO = SetOption('NoMacrosInStrings','On')
$array = ReadFile('e:\kixtest\xchport.txt')

for each $element in $array
if left($element,5) = "SMTP:"
$EMailAddy = Split(Split($element,'%')[0],':')[1]
$RC=RedirectOutput("e:\kixtest\emailady.txt")
IF RedirectOutput("e:\kixtest\emailady.txt") = 0
$EMailAddy ?
endif
else
if left($element,7) = "CCMAIL:"
$EMailAddy = Split(Split($element,'%')[2],':')[1]
$EMailAddy ?
endif

_________________________
let the wise listen and add to their learning,
and let the discerning get guidance- Proverbs 1:5