Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

Outlook Express

0 views
Skip to first unread message

Shane Newsom

unread,
Jul 20, 2001, 9:02:11 AM7/20/01
to
I would like to know how I can get all the identity's in Outlook Express, or
the all the GUID for Outlook Express? Thank you for anyone can help.

--


Shane D. Newsom
System Analyst
12712 Park Central Place
Mailstop 5002 PCLR-276
Dallas, TX 75251
Phone - (972) 591-6584
Fax - (972) 531-6584


Jason

unread,
Jul 20, 2001, 11:55:49 AM7/20/01
to
I'm not sure if this will help. I use it to check local identities on an
intranet with script running under Windows Scripting Host (not Web
scripting):

This code checks users of both Outlook and Outlook Express:

Option Explicit
On Error Resume Next
Dim oWiSh, sKey(2), x, sFrom
Set oWiSh = CreateObject("WScript.Shell")
sKey(1) = "HKCU\Software\Microsoft\Office\Outlook\OMI Account
Manager\Accounts\00000001\SMTP EMail Address"
sKey(2) = "HKCU\Software\Microsoft\Internet Account
Manager\Accounts\00000001\SMTP EMail Address"
For x = 1 to UBound(sKey)
sFrom = oWiSh.RegRead(sKey(x))
If Len(sFrom) > 0 Then Exit For
Next
MsgBox sFrom
Set oWiSh = Nothing

"Shane Newsom" <sne...@jcpenney.com> wrote in message
news:D5469F9BC4568B07.B38CED56...@lp.airnews.net...

mayayana1

unread,
Jul 20, 2001, 8:33:32 PM7/20/01
to
For the current user:
HKEY_CURRENT_USER\Identities
The subkey of Identities is named for the GUID(s).
I don't know where to get all identities.

--
--


Shane Newsom <sne...@jcpenney.com> wrote in message
news:D5469F9BC4568B07.B38CED56...@lp.airnews.net...

0 new messages