View Single Post
Old 10-23-2014, 04:50 AM   #1
robHaines
New Member
 
Join Date: Oct 2014
Model: 7100T
PIN: N/A
Carrier: o2
Posts: 1
Default Export RIM properties off email

Please Login to Remove!

Hi, Does anyone have any powershell EWS code they are willing to share that will pull off the RIM properties from emails?

Specifcally i'm trying to get the following....
PR_RIM_INTERNET_MESSAGE_ID
PR_RIM_MSG_REF_ID
PR_RIM_MSG_ON_DEVICE_3_6
PR_RIM_MSG_STATUS
PR_RIM_PAGER_TX_FLAG
PR_RIM_MSG_FOLDER_ID

I can get PR_RIM_INTERNET_MESSAGE_ID with no problems. However when i try to get the others I get a blank value. MFCMapi also reports the "name was found as ANSI"
Outlookspy shows the property as chinese characters.

I've also tried getting to the property via the tag and/or the DSAL but to no avail.

This is a snippet of the code.....
Sets the GUID of the property
$PR_RIM_MSG_REF_ID = new-object Guid("00020329-0000-0000-C000-000000000046")
Defines the type of the property
$pidtagPR_RIM_MSG_REF_ID = new-object Microsoft.Exchange.WebServices.Data.ExtendedProper tyDefinition($PR_RIM_MSG_REF_ID, "PR_RIM_MSG_REF_ID", [Microsoft.Exchange.WebServices.Data.MapiPropertyTy pe]::long);
Creates property array
$proplist = New-Object System.Collections.ArrayList
Add property to array
[void]$proplist.add($pidtagPR_RIM_MSG_REF_ID)
Defines the required extended properties required from the email
$psPropertySet = new-object Microsoft.Exchange.WebServices.Data.PropertySet([Microsoft.Exchange.WebServices.Data.BasePropertySe t]::IdOnly, $proplist)
Gets the required extended properties required from the email
$msMessage = [Microsoft.Exchange.WebServices.Data.EmailMessage]::Bind($service,$ItemId.UniqueId,$psPropertySet)
Displays the value of extended property PR_RIM_MSG_REF_ID
$BB_RIM_MSG_REF_ID = $msMessage.ExtendedProperties | where{$_.PropertyDefinition -like "*PR_RIM_MSG_REF_ID*"}

Any assistance would be appreciated.

Thanks
Rob
Offline   Reply With Quote