Confusion about unique ID of public contact
To access the PR_ENTRYID from CDOEX/ADO have a look at
http://support.microsoft.com/default.aspx?scid=kb;en-us;298401 . The
property is an array of bytes if your trying to do this in VBS you need
covert it to a string using something like arrayconvert from
http://support.microsoft.com/default.aspx?scid=kb;en-us;250344 . eg
set apptobj = createobject("ADODB.Record")
apptobj.open "http://server/exchange/mailbox/Contacts/contact.EML",,3
Set cnvt = CreateObject("ADs.ArrayConvert")
wscript.echo
cnvt.CvOctetStr2vHexStr(apptobj.fields("http://schemas.microsoft.com/mapi/pr
optag/x0FFF0102").Value)
If you want to make the DAV:id avaible in Outlook you can do this by using a
form have a look at
http://support.microsoft.com/default.aspx?scid=kb;EN-US;160799 and
http://blogs.msdn.com/exchange/archive/2004/05/26/142607.aspx .
Cheers
Glen
|