Retrieving Email Header Information in Outlook Using VBA – Part 2

In my previous post on the subject:

I demonstrated how to extract specific header property value by basically parsing the entire raw header.

After posting, I received an e-mail asking why I didn’t simply use the same approach I used to get the entire raw header, so .PropertyAccessor.GetProperty(), to get specific property values instead of parsing things as I had done.
 

Retrieving Specific E-mail Message Header Properties in Outlook Using VBA’s .PropertyAccessor.GetProperty()

The basic concept was already demonstrated in my previous post. In the case of an e-mail, we can basically do:

Public Function ExtractEmailHeaderProperty() As String
    Dim oItem                 As Outlook.MailItem
    Dim sMessageId            As String

    On Error GoTo Error_Handler

    Set oItem = Application.ActiveExplorer.Selection.Item(1)
    If oItem.Class = olMail Then
        ExtractEmailHeaderProperty_3 = oItem.PropertyAccessor.GetProperty("http://schemas.microsoft.com/mapi/proptag/SomePropertyTag")
    End If

Error_Handler_Exit:
    On Error Resume Next
    If Not oItem Is Nothing Then Set oItem = Nothing
    Exit Function

Error_Handler:
    MsgBox "The following error has occurred" & vbCrLf & vbCrLf & _
           "Error Number: " & Err.Number & vbCrLf & _
           "Error Source: ExtractEmailHeaderProperty" & vbCrLf & _
           "Error Description: " & Err.Description & _
           Switch(Erl = 0, "", Erl <> 0, vbCrLf & "Line No: " & Erl) _
           , vbOKOnly + vbCritical, "An Error has Occurred!"
    Resume Error_Handler_Exit
End Function

where we replace SomePropertyTag which the tag of the property we seek, so for the e-mail’s subject we’d use 0x0037001F, the date/time the e-mail was received at we’d use 0x0E060040.

Then we could create individual functions for every property, similar to:

Public Function ExtractEmailSubjectProperty() As String
    Dim oItem                 As Outlook.MailItem
    Dim sMessageId            As String

    On Error GoTo Error_Handler

    Set oItem = Application.ActiveExplorer.Selection.Item(1)
    If oItem.Class = olMail Then
        ExtractEmailSubjectProperty = oItem.PropertyAccessor.GetProperty("http://schemas.microsoft.com/mapi/proptag/0x0037001F")
    End If

Error_Handler_Exit:
    On Error Resume Next
    If Not oItem Is Nothing Then Set oItem = Nothing
    Exit Function

Error_Handler:
    MsgBox "The following error has occurred" & vbCrLf & vbCrLf & _
           "Error Number: " & Err.Number & vbCrLf & _
           "Error Source: ExtractEmailSubjectProperty" & vbCrLf & _
           "Error Description: " & Err.Description & _
           Switch(Erl = 0, "", Erl <> 0, vbCrLf & "Line No: " & Erl) _
           , vbOKOnly + vbCritical, "An Error has Occurred!"
    Resume Error_Handler_Exit
End Function
Public Function ExtractEmailReceivedDateProperty() As String
    Dim oItem                 As Outlook.MailItem
    Dim sMessageId            As String

    On Error GoTo Error_Handler

    Set oItem = Application.ActiveExplorer.Selection.Item(1)
    If oItem.Class = olMail Then
        ExtractEmailReceivedDateProperty = oItem.PropertyAccessor.GetProperty("http://schemas.microsoft.com/mapi/proptag/0x0E060040")
    End If

Error_Handler_Exit:
    On Error Resume Next
    If Not oItem Is Nothing Then Set oItem = Nothing
    Exit Function

Error_Handler:
    MsgBox "The following error has occurred" & vbCrLf & vbCrLf & _
           "Error Number: " & Err.Number & vbCrLf & _
           "Error Source: ExtractEmailReceivedDateProperty" & vbCrLf & _
           "Error Description: " & Err.Description & _
           Switch(Erl = 0, "", Erl <> 0, vbCrLf & "Line No: " & Erl) _
           , vbOKOnly + vbCritical, "An Error has Occurred!"
    Resume Error_Handler_Exit
End Function

so on and so forth.

OR, we could create a function that takes a Property Tag as an argument, so it could be used to get any of the properties.

Public Function ExtractEmailHeaderProperty(ByVal sPropertyTag As String) As String
    Dim oItem                 As Outlook.MailItem
    Dim sMessageId            As String

    On Error GoTo Error_Handler

    Set oItem = Application.ActiveExplorer.Selection.Item(1)
    If oItem.Class = olMail Then
        ExtractEmailHeaderProperty = oItem.PropertyAccessor.GetProperty("http://schemas.microsoft.com/mapi/proptag/" & sPropertyTag)
    End If

Error_Handler_Exit:
    On Error Resume Next
    If Not oItem Is Nothing Then Set oItem = Nothing
    Exit Function

Error_Handler:
    MsgBox "The following error has occurred" & vbCrLf & vbCrLf & _
           "Error Number: " & Err.Number & vbCrLf & _
           "Error Source: ExtractEmailHeaderProperty" & vbCrLf & _
           "Error Description: " & Err.Description & _
           Switch(Erl = 0, "", Erl <> 0, vbCrLf & "Line No: " & Erl) _
           , vbOKOnly + vbCritical, "An Error has Occurred!"
    Resume Error_Handler_Exit
End Function

The next question then becomes:

Where do we find a listing of the available Property Tags (sPropertyTag)???

and that is the harder question to answer. The technique of using .PropertyAccessor.GetProperty() is one I’ve been familiar with of years and years, and I’ve search for a listing and never found one. I’ve found bits here and there, but never a complete list; until yesterday while preparing this article!

In this document is an extensive listing of Outlook item properties. Now, because of the format of the document … I extracted the information and generated the following list:

No. Canonical name Description Property Set Property Set Name Property Set Value Property long ID (LID) Property ID WebDAV Data type Data Type Name Data Type Value Area Defining reference VBA Property Tag Variable
1 PidLidAddressBookProviderArrayType Specifies the state of the electronic addresses of the contact and represents a set of bit flags. PSETID_Address {00062004-0000-0000-C000-000000000046} PSETID_Address {00062004-0000-0000-C000-000000000046} 0x00008029 PtypInteger32, 0x0003 PtypInteger32 0x0003 Contact Properties [MS-OXOCNTC] section 2.2.1.2.12
2 PidLidAddressBookProviderEmailList Specifies which electronic address properties are set on the Contact object. PSETID_Address {00062004-0000-0000-C000-000000000046} PSETID_Address {00062004-0000-0000-C000-000000000046} 0x00008028 PtypMultipleInteger32, 0x1003 PtypMultipleInteger32 0x1003 Contact Properties [MS-OXOCNTC] section 2.2.1.2.11
3 PidLidAddressCountryCode Specifies the country code portion of the mailing address of the contact. PSETID_Address {00062004-0000-0000-C000-000000000046} PSETID_Address {00062004-0000-0000-C000-000000000046} 0x000080DD PtypString, 0x001F PtypString 0x001F Contact Properties [MS-OXOCNTC] section 2.2.1.3.6
4 PidLidAgingDontAgeMe Specifies whether to automatically archive the message. PSETID_Common {00062008-0000-0000-C000-000000000046} PSETID_Common {00062008-0000-0000-C000-000000000046} 0x0000850E PtypBoolean, 0x000B PtypBoolean 0x000B Common [MS-OXCMSG] section 2.2.1.33
5 PidLidAllAttendeesString Specifies a list of all the attendees except for the organizer, including resources and unsendable attendees. PSETID_Appointment {00062002-0000-0000-C000-000000000046} PSETID_Appointment {00062002-0000-0000-C000-000000000046} 0x00008238 http://schemas.microsoft.com/mapi/allattendeesstring PtypString, 0x001F PtypString 0x001F Meetings [MS-OXOCAL] section 2.2.1.16
6 PidLidAllowExternalCheck This property is set to TRUE. PSETID_Appointment {00062002-0000-0000-C000-000000000046} PSETID_Appointment {00062002-0000-0000-C000-000000000046} 0x00008246 PtypBoolean, 0x000B PtypBoolean 0x000B Conferencing [MS-OXOCAL] section 2.2.1.56.5
7 PidLidAnniversaryEventEntryId Specifies the EntryID of the Appointment object that represents an anniversary of the contact. PSETID_Address {00062004-0000-0000-C000-000000000046} PSETID_Address {00062004-0000-0000-C000-000000000046} 0x0000804E PtypBinary, 0x0102 PtypBinary 0x0102 Contact Properties [MS-OXOCNTC] section 2.2.1.5.6
8 PidLidAppointmentAuxiliaryFlags Specifies a bit field that describes the auxiliary state of the object. PSETID_Appointment {00062002-0000-0000-C000-000000000046} PSETID_Appointment {00062002-0000-0000-C000-000000000046} 0x00008207 PtypInteger32, 0x0003 PtypInteger32 0x0003 Meetings [MS-OXOCAL] section 2.2.1.3
9 PidLidAppointmentColor Specifies the color to be used when displaying the Calendar object. PSETID_Appointment {00062002-0000-0000-C000-000000000046} PSETID_Appointment {00062002-0000-0000-C000-000000000046} 0x00008214 PtypInteger32, 0x0003 PtypInteger32 0x0003 Calendar [MS-OXOCAL] section 2.2.1.50
10 PidLidAppointmentCounterProposal Indicates whether a Meeting Response object is a counter proposal. PSETID_Appointment {00062002-0000-0000-C000-000000000046} PSETID_Appointment {00062002-0000-0000-C000-000000000046} 0x00008257 PtypBoolean, 0x000B PtypBoolean 0x000B Meetings [MS-OXOCAL] section 2.2.4.7
11 PidLidAppointmentDuration Specifies the length of the event, in minutes. PSETID_Appointment {00062002-0000-0000-C000-000000000046} PSETID_Appointment {00062002-0000-0000-C000-000000000046} 0x00008213 http://schemas.microsoft.com/mapi/apptduration PtypInteger32, 0x0003 PtypInteger32 0x0003 Calendar [MS-OXOCAL] section 2.2.1.7
12 PidLidAppointmentEndDate Indicates the date that the appointment ends. PSETID_Appointment {00062002-0000-0000-C000-000000000046} PSETID_Appointment {00062002-0000-0000-C000-000000000046} 0x00008211 http://schemas.microsoft.com/mapi/apptenddate PtypTime, 0x0040 PtypTime 0x0040 Calendar [MS-XWDCAL] section 2.2.7.3
13 PidLidAppointmentEndTime Indicates the time that the appointment ends. PSETID_Appointment {00062002-0000-0000-C000-000000000046} PSETID_Appointment {00062002-0000-0000-C000-000000000046} 0x00008210 http://schemas.microsoft.com/mapi/apptendtime PtypTime, 0x0040 PtypTime 0x0040 Calendar [MS-XWDCAL] section 2.2.7.4
14 PidLidAppointmentEndWhole Specifies the end date and time for the event. PSETID_Appointment {00062002-0000-0000-C000-000000000046} PSETID_Appointment {00062002-0000-0000-C000-000000000046} 0x0000820E http://schemas.microsoft.com/mapi/apptendwhole PtypTime, 0x0040 PtypTime 0x0040 Calendar [MS-OXOCAL] section 2.2.1.6
15 PidLidAppointmentLastSequence Indicates to the organizer the last sequence number that was sent to any attendee. PSETID_Appointment {00062002-0000-0000-C000-000000000046} PSETID_Appointment {00062002-0000-0000-C000-000000000046} 0x00008203 PtypInteger32, 0x0003 PtypInteger32 0x0003 Meetings [MS-OXOCAL] section 2.2.4.2
16 PidLidAppointmentMessageClass Indicates the message class of the Meeting object to be generated from the Meeting Request object. PSETID_Meeting {6ED8DA90-450B-101B-98DA-00AA003F1305} PSETID_Meeting {6ED8DA90-450B-101B-98DA-00AA003F1305} 0x00000024 PtypString, 0x001F PtypString 0x001F Meetings [MS-OXOCAL] section 2.2.6.6
17 PidLidAppointmentNotAllowPropose Indicates whether attendees are not allowed to propose a new date and/or time for the meeting. PSETID_Appointment {00062002-0000-0000-C000-000000000046} PSETID_Appointment {00062002-0000-0000-C000-000000000046} 0x0000825A PtypBoolean, 0x000B PtypBoolean 0x000B Meetings [MS-OXOCAL] section 2.2.1.26
18 PidLidAppointmentProposalNumber Specifies the number of attendees who have sent counter proposals that have not been accepted or rejected by the organizer. PSETID_Appointment {00062002-0000-0000-C000-000000000046} PSETID_Appointment {00062002-0000-0000-C000-000000000046} 0x00008259 PtypInteger32, 0x0003 PtypInteger32 0x0003 Meetings [MS-OXOCAL] section 2.2.4.6
19 PidLidAppointmentProposedDuration Indicates the proposed value for the PidLidAppointmentDuration property (section 2.11) for a counter proposal. PSETID_Appointment {00062002-0000-0000-C000-000000000046} PSETID_Appointment {00062002-0000-0000-C000-000000000046} 0x00008256 PtypInteger32, 0x0003 PtypInteger32 0x0003 Meetings [MS-OXOCAL] section 2.2.7.5
20 PidLidAppointmentProposedEndWhole Specifies the proposed value for the PidLidAppointmentEndWhole property (section 2.14) for a counter proposal. PSETID_Appointment {00062002-0000-0000-C000-000000000046} PSETID_Appointment {00062002-0000-0000-C000-000000000046} 0x00008251 PtypTime, 0x0040 PtypTime 0x0040 Meetings [MS-OXOCAL] section 2.2.7.4
21 PidLidAppointmentProposedStartWhole Specifies the proposed value for the PidLidAppointmentStartWhole property (section 2.29) for a counter proposal. PSETID_Appointment {00062002-0000-0000-C000-000000000046} PSETID_Appointment {00062002-0000-0000-C000-000000000046} 0x00008250 PtypTime, 0x0040 PtypTime 0x0040 Meetings [MS-OXOCAL] section 2.2.7.3
22 PidLidAppointmentRecur Specifies the dates and times when a recurring series occurs. PSETID_Appointment {00062002-0000-0000-C000-000000000046} PSETID_Appointment {00062002-0000-0000-C000-000000000046} 0x00008216 http://schemas.microsoft.com/mapi/apptrecur PtypBinary, 0x0102 PtypBinary 0x0102 Calendar [MS-OXOCAL] section 2.2.1.44
23 PidLidAppointmentReplyName Specifies the user who last replied to the meeting request or meeting update. PSETID_Appointment {00062002-0000-0000-C000-000000000046} PSETID_Appointment {00062002-0000-0000-C000-000000000046} 0x00008230 http://schemas.microsoft.com/mapi/apptreplyname PtypString, 0x001F PtypString 0x001F Meetings [MS-OXOCAL] section 2.2.4.5
24 PidLidAppointmentReplyTime Specifies the date and time at which the attendee responded to a received meeting request or Meeting Update object. PSETID_Appointment {00062002-0000-0000-C000-000000000046} PSETID_Appointment {00062002-0000-0000-C000-000000000046} 0x00008220 urn:schemas:calendar:replytime, http://schemas.microsoft.com/mapi/apptreplytime PtypTime, 0x0040 PtypTime 0x0040 Meetings [MS-OXOCAL] section 2.2.4.3
25 PidLidAppointmentSequence Specifies the sequence number of a Meeting object. PSETID_Appointment {00062002-0000-0000-C000-000000000046} PSETID_Appointment {00062002-0000-0000-C000-000000000046} 0x00008201 http://schemas.microsoft.com/mapi/apptsequence PtypInteger32, 0x0003 PtypInteger32 0x0003 Meetings [MS-OXOCAL] section 2.2.1.1
26 PidLidAppointmentSequenceTime Indicates the date and time at which the PidLidAppointmentSequence property (section 2.25) was last modified. PSETID_Appointment {00062002-0000-0000-C000-000000000046} PSETID_Appointment {00062002-0000-0000-C000-000000000046} 0x00008202 PtypTime, 0x0040 PtypTime 0x0040 Meetings [MS-OXOCAL] section 2.2.4.1
27 PidLidAppointmentStartDate Identifies the date that the appointment starts. PSETID_Appointment {00062002-0000-0000-C000-000000000046} PSETID_Appointment {00062002-0000-0000-C000-000000000046} 0x00008212 http://schemas.microsoft.com/mapi/apptstartdate PtypTime, 0x0040 PtypTime 0x0040 Calendar [MS-XWDCAL] section 2.2.7.10
28 PidLidAppointmentStartTime Identifies the time that the appointment starts. PSETID_Appointment {00062002-0000-0000-C000-000000000046} PSETID_Appointment {00062002-0000-0000-C000-000000000046} 0x0000820F http://schemas.microsoft.com/mapi/apptstarttime PtypTime, 0x0040 PtypTime 0x0040 Calendar [MS-XWDCAL] section 2.2.7.11
29 PidLidAppointmentStartWhole Specifies the start date and time of the appointment. PSETID_Appointment {00062002-0000-0000-C000-000000000046} PSETID_Appointment {00062002-0000-0000-C000-000000000046} 0x0000820D http://schemas.microsoft.com/mapi/apptstartwhole PtypTime, 0x0040 PtypTime 0x0040 Calendar [MS-OXOCAL] section 2.2.1.5
30 PidLidAppointmentStateFlags Specifies a bit field that describes the state of the object. PSETID_Appointment {00062002-0000-0000-C000-000000000046} PSETID_Appointment {00062002-0000-0000-C000-000000000046} 0x00008217 http://schemas.microsoft.com/mapi/apptstateflags PtypInteger32, 0x0003 PtypInteger32 0x0003 Meetings [MS-OXOCAL] section 2.2.1.10
31 PidLidAppointmentSubType Specifies whether the event is an all-day event. PSETID_Appointment {00062002-0000-0000-C000-000000000046} PSETID_Appointment {00062002-0000-0000-C000-000000000046} 0x00008215 urn:schemas:calendar:alldayevent, http://schemas.microsoft.com/mapi/apptsubtype PtypBoolean, 0x000B PtypBoolean 0x000B Calendar [MS-OXOCAL] section 2.2.1.9
32 PidLidAppointmentTimeZoneDefinitionEndDisplay Specifies time zone information that indicates the time zone of the PidLidAppointmentEndWhole property (section 2.14). PSETID_Appointment {00062002-0000-0000-C000-000000000046} PSETID_Appointment {00062002-0000-0000-C000-000000000046} 0x0000825F PtypBinary, 0x0102 PtypBinary 0x0102 Calendar [MS-OXOCAL] section 2.2.1.43
33 PidLidAppointmentTimeZoneDefinitionRecur Specifies time zone information that describes how to convert the meeting date and time on a recurring series to and from UTC. PSETID_Appointment {00062002-0000-0000-C000-000000000046} PSETID_Appointment {00062002-0000-0000-C000-000000000046} 0x00008260 PtypBinary, 0x0102 PtypBinary 0x0102 Calendar [MS-OXOCAL] section 2.2.1.41
34 PidLidAppointmentTimeZoneDefinitionStartDisplay Specifies time zone information that indicates the time zone of the PidLidAppointmentStartWhole property (section 2.29). PSETID_Appointment {00062002-0000-0000-C000-000000000046} PSETID_Appointment {00062002-0000-0000-C000-000000000046} 0x0000825E PtypBinary, 0x0102 PtypBinary 0x0102 Calendar [MS-OXOCAL] section 2.2.1.42
35 PidLidAppointmentUnsendableRecipients Contains a list of unsendable attendees. PSETID_Appointment {00062002-0000-0000-C000-000000000046} PSETID_Appointment {00062002-0000-0000-C000-000000000046} 0x0000825D PtypBinary, 0x0102 PtypBinary 0x0102 Meetings [MS-OXOCAL] section 2.2.1.25
36 PidLidAppointmentUpdateTime Indicates the time at which the appointment was last updated. PSETID_Appointment {00062002-0000-0000-C000-000000000046} PSETID_Appointment {00062002-0000-0000-C000-000000000046} 0x00008226 http://schemas.microsoft.com/mapi/apptupdatetime PtypTime, 0x0040 PtypTime 0x0040 Meetings [MS-XWDCAL] section 2.2.7.15
37 PidLidAttendeeCriticalChange Specifies the date and time at which the meeting-related object was sent. PSETID_Meeting {6ED8DA90-450B-101B-98DA-00AA003F1305} PSETID_Meeting {6ED8DA90-450B-101B-98DA-00AA003F1305} 0x00000001 http://schemas.microsoft.com/mapi/attendee_critical_change PtypTime, 0x0040 PtypTime 0x0040 Meetings [MS-OXOCAL] section 2.2.5.2
38 PidLidAutoFillLocation Indicates whether the value of the PidLidLocation property (section 2.159) is set to the PidTagDisplayName property (section 2.677). PSETID_Appointment {00062002-0000-0000-C000-000000000046} PSETID_Appointment {00062002-0000-0000-C000-000000000046} 0x0000823A PtypBoolean, 0x000B PtypBoolean 0x000B Meetings [MS-OXOCAL] section 2.2.4.8
39 PidLidAutoLog Specifies to the application whether to create a Journal object for each action associated with this Contact object. PSETID_Address {00062004-0000-0000-C000-000000000046} PSETID_Address {00062004-0000-0000-C000-000000000046} 0x00008025 PtypBoolean, 0x000B PtypBoolean 0x000B Contact Properties [MS-OXOCNTC] section 2.2.1.10.19
40 PidLidAutoProcessState Specifies the options used in the automatic processing of email messages. PSETID_Common {00062008-0000-0000-C000-000000000046} PSETID_Common {00062008-0000-0000-C000-000000000046} 0x0000851A PtypInteger32, 0x0003 PtypInteger32 0x0003 General Message Properties [MS-OXOMSG] section 2.2.1.73
41 PidLidAutoStartCheck Specifies whether to automatically start the conferencing application when a reminder for the start of a meeting is executed. PSETID_Appointment {00062002-0000-0000-C000-000000000046} PSETID_Appointment {00062002-0000-0000-C000-000000000046} 0x00008244 PtypBoolean, 0x000B PtypBoolean 0x000B Conferencing [MS-OXOCAL] section 2.2.1.56.1
42 PidLidBilling Specifies billing information for the contact. PSETID_Common {00062008-0000-0000-C000-000000000046} PSETID_Common {00062008-0000-0000-C000-000000000046} 0x00008535 urn:schemas:contacts:billinginformation PtypString, 0x001F PtypString 0x001F General Message Properties [MS-OXOCNTC] section 2.2.1.10.24
43 PidLidBirthdayEventEntryId Specifies the EntryID of an optional Appointment object that represents the birthday of the contact. PSETID_Address {00062004-0000-0000-C000-000000000046} PSETID_Address {00062004-0000-0000-C000-000000000046} 0x0000804D PtypBinary, 0x0102 PtypBinary 0x0102 Contact Properties [MS-OXOCNTC] section 2.2.1.5.3
44 PidLidBirthdayLocal Specifies the birthday of a contact. PSETID_Address {00062004-0000-0000-C000-000000000046} PSETID_Address {00062004-0000-0000-C000-000000000046} 0x000080DE PtypTime, 0x0040 PtypTime 0x0040 Contact Properties [MS-OXOCNTC] section 2.2.1.5.2
45 PidLidBusinessCardCardPicture Contains the image to be used on a business card. PSETID_Address {00062004-0000-0000-C000-000000000046} PSETID_Address {00062004-0000-0000-C000-000000000046} 0x00008041 PtypBinary, 0x0102 PtypBinary 0x0102 Contact Properties [MS-OXOCNTC] section 2.2.1.7.2
46 PidLidBusinessCardDisplayDefinition Contains user customization details for displaying a contact as a business card. PSETID_Address {00062004-0000-0000-C000-000000000046} PSETID_Address {00062004-0000-0000-C000-000000000046} 0x00008040 PtypBinary, 0x0102 PtypBinary 0x0102 Contact Properties [MS-OXOCNTC] section 2.2.1.7.1
47 PidLidBusyStatus Specifies the availability of a user for the event described by the object. PSETID_Appointment {00062002-0000-0000-C000-000000000046} PSETID_Appointment {00062002-0000-0000-C000-000000000046} 0x00008205 http://schemas.microsoft.com/mapi/busystatus PtypInteger32, 0x0003 PtypInteger32 0x0003 Calendar [MS-OXOCAL] section 2.2.1.2
48 PidLidCalendarType Contains the value of the CalendarType field from the PidLidAppointmentRecur property (section 2.22). PSETID_Meeting {6ED8DA90-450B-101B-98DA-00AA003F1305} PSETID_Meeting {6ED8DA90-450B-101B-98DA-00AA003F1305} 0x0000001C http://schemas.microsoft.com/mapi/calendar_type PtypInteger32, 0x0003 PtypInteger32 0x0003 Meetings [MS-OXOCAL] section 2.2.6.11
49 PidLidCategories Contains the array of text labels assigned to this Message object. PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} 0x00009000 PtypMultipleString, 0x101F PtypMultipleString 0x101F Common [MS-OXCMSG] section 2.2.1.22
50 PidLidCcAttendeesString Contains a list of all the sendable attendees who are also optional attendees. PSETID_Appointment {00062002-0000-0000-C000-000000000046} PSETID_Appointment {00062002-0000-0000-C000-000000000046} 0x0000823C PtypString, 0x001F PtypString 0x001F Meetings [MS-OXOCAL] section 2.2.1.18
51 PidLidChangeHighlight Specifies a bit field that indicates how the Meeting object has changed. PSETID_Appointment {00062002-0000-0000-C000-000000000046} PSETID_Appointment {00062002-0000-0000-C000-000000000046} 0x00008204 PtypInteger32, 0x0003 PtypInteger32 0x0003 Meetings [MS-OXOCAL] section 2.2.6.2
52 PidLidClassification Contains a list of the classification categories to which the associated Message object has been assigned. PSETID_Common {00062008-0000-0000-C000-000000000046} PSETID_Common {00062008-0000-0000-C000-000000000046} 0x000085B6 PtypString, 0x001F PtypString 0x001F General Message Properties [MS-OXCMSG] section 2.2.1.23
53 PidLidClassificationDescription Contains a human-readable summary of each of the classification categories included in the PidLidClassification property (section 2.53). PSETID_Common {00062008-0000-0000-C000-000000000046} PSETID_Common {00062008-0000-0000-C000-000000000046} 0x000085B7 PtypString, 0x001F PtypString 0x001F General Message Properties [MS-OXCMSG] section 2.2.1.24
54 PidLidClassificationGuid Contains the GUID that identifies the list of email classification categories used by a Message object. PSETID_Common {00062008-0000-0000-C000-000000000046} PSETID_Common {00062008-0000-0000-C000-000000000046} 0x000085B8 PtypString, 0x001F PtypString 0x001F General Message Properties [MS-OXCMAIL] section 2.5.1
55 PidLidClassificationKeep Indicates whether the message uses any classification categories. PSETID_Common {00062008-0000-0000-C000-000000000046} PSETID_Common {00062008-0000-0000-C000-000000000046} 0x000085BA PtypBoolean, 0x000B PtypBoolean 0x000B General Message Properties [MS-OXCMAIL] section 2.5.2
56 PidLidClassified Indicates whether the contents of this message are regarded as classified information. PSETID_Common {00062008-0000-0000-C000-000000000046} PSETID_Common {00062008-0000-0000-C000-000000000046} 0x000085B5 PtypBoolean, 0x000B PtypBoolean 0x000B General Message Properties [MS-OXCMSG] section 2.2.1.25
57 PidLidCleanGlobalObjectId Contains the value of the PidLidGlobalObjectId property (section 2.142) for an object that represents an Exception object to a recurring series, where the Year, Month, and Day fields are all zero. PSETID_Meeting {6ED8DA90-450B-101B-98DA-00AA003F1305} PSETID_Meeting {6ED8DA90-450B-101B-98DA-00AA003F1305} 0x00000023 PtypBinary, 0x0102 PtypBinary 0x0102 Meetings [MS-OXOCAL] section 2.2.1.28
58 PidLidClientIntent Indicates what actions the user has taken on this Meeting object. PSETID_CalendarAssistant {11000E07-B51B-40D6-AF21-CAA85EDAB1D0} PSETID_CalendarAssistant {11000E07-B51B-40D6-AF21-CAA85EDAB1D0} 0x00000015 PtypInteger32, 0x0003 PtypInteger32 0x0003 Calendar [MS-OXOCAL] section 2.2.2.4
59 PidLidClipEnd Specifies the end date and time of the event in UTC. PSETID_Appointment {00062002-0000-0000-C000-000000000046} PSETID_Appointment {00062002-0000-0000-C000-000000000046} 0x00008236 PtypTime, 0x0040 PtypTime 0x0040 Calendar [MS-OXOCAL] section 2.2.1.15
60 PidLidClipStart Specifies the start date and time of the event in UTC. PSETID_Appointment {00062002-0000-0000-C000-000000000046} PSETID_Appointment {00062002-0000-0000-C000-000000000046} 0x00008235 PtypTime, 0x0040 PtypTime 0x0040 Calendar [MS-OXOCAL] section 2.2.1.14
61 PidLidCollaborateDoc Specifies the document to be launched when the user joins the meeting. PSETID_Appointment {00062002-0000-0000-C000-000000000046} PSETID_Appointment {00062002-0000-0000-C000-000000000046} 0x00008247 PtypString, 0x001F PtypString 0x001F Conferencing [MS-OXOCAL] section 2.2.1.56.7
62 PidLidCommonEnd Indicates the end time for the Message object. PSETID_Common {00062008-0000-0000-C000-000000000046} PSETID_Common {00062008-0000-0000-C000-000000000046} 0x00008517 PtypTime, 0x0040 PtypTime 0x0040 General Message Properties [MS-OXCMSG] section 2.2.1.19
63 PidLidCommonStart Indicates the start time for the Message object. PSETID_Common {00062008-0000-0000-C000-000000000046} PSETID_Common {00062008-0000-0000-C000-000000000046} 0x00008516 PtypTime, 0x0040 PtypTime 0x0040 General Message Properties [MS-OXCMSG] section 2.2.1.18
64 PidLidCompanies Contains a list of company names, each of which is associated with a contact that is specified in the PidLidContacts property ([MS-OXCMSG] section 2.2.1.59.2). PSETID_Common {00062008-0000-0000-C000-000000000046} PSETID_Common {00062008-0000-0000-C000-000000000046} 0x00008539 PtypMultipleString, 0x101F PtypMultipleString 0x101F General Message Properties [MS-OXOJRNL] section 2.2.2.4
65 PidLidConferencingCheck When set to TRUE (0x00000001), the PidLidConferencingCheck property indicates that the associated meeting is one of the following types: PSETID_Appointment {00062002-0000-0000-C000-000000000046} PSETID_Appointment {00062002-0000-0000-C000-000000000046} 0x00008240 PtypBoolean, 0x000B PtypBoolean 0x000B Conferencing [MS-OXOCAL] section 2.2.1.56.2
66 PidLidConferencingType Specifies the type of the meeting. PSETID_Appointment {00062002-0000-0000-C000-000000000046} PSETID_Appointment {00062002-0000-0000-C000-000000000046} 0x00008241 PtypInteger32, 0x0003 PtypInteger32 0x0003 Conferencing [MS-OXOCAL] section 2.2.1.56.3
67 PidLidContactCharacterSet Specifies the character set used for a Contact object. PSETID_Address {00062004-0000-0000-C000-000000000046} PSETID_Address {00062004-0000-0000-C000-000000000046} 0x00008023 PtypInteger32, 0x0003 PtypInteger32 0x0003 Contact Properties [MS-OXOCNTC] section 2.2.1.10.18
68 PidLidContactItemData Specifies the visible fields in the application’s user interface that are used to help display the contact information. PSETID_Address {00062004-0000-0000-C000-000000000046} PSETID_Address {00062004-0000-0000-C000-000000000046} 0x00008007 PtypMultipleInteger32, 0x1003 PtypMultipleInteger32 0x1003 Contact Properties [MS-OXOCNTC] section 2.2.1.10.22
69 PidLidContactLinkedGlobalAddressListEntryId Specifies the EntryID of the GAL contact to which the duplicate contact is linked. PSETID_Address {00062004-0000-0000-C000-000000000046} PSETID_Address {00062004-0000-0000-C000-000000000046} 0x000080E2 PtypBinary, 0x0102 PtypBinary 0x0102 Contact Properties [MS-OXOCNTC] section 2.2.1.9.1
70 PidLidContactLinkEntry Contains the elements of the PidLidContacts property (section 2.77). PSETID_Common {00062008-0000-0000-C000-000000000046} PSETID_Common {00062008-0000-0000-C000-000000000046} 0x00008585 PtypBinary, 0x0102 PtypBinary 0x0102 Contact Properties [MS-OXCMSG] section 2.2.1.59.1
71 PidLidContactLinkGlobalAddressListLinkId Specifies the GUID of the GAL contact to which the duplicate contact is linked. PSETID_Address {00062004-0000-0000-C000-000000000046} PSETID_Address {00062004-0000-0000-C000-000000000046} 0x000080E8 PtypGuid, 0x0048 PtypGuid 0x0048 Contact Properties [MS-OXOCNTC] section 2.2.1.9.2
72 PidLidContactLinkGlobalAddressListLinkState Specifies the state of the linking between the GAL contact and the duplicate contact. PSETID_Address {00062004-0000-0000-C000-000000000046} PSETID_Address {00062004-0000-0000-C000-000000000046} 0x000080E6 PtypInteger32, 0x0003 PtypInteger32 0x0003 Contact Properties [MS-OXOCNTC] section 2.2.1.9.3
73 PidLidContactLinkLinkRejectHistory Contains a list of GAL contacts that were previously rejected for linking with the duplicate contact. PSETID_Address {00062004-0000-0000-C000-000000000046} PSETID_Address {00062004-0000-0000-C000-000000000046} 0x000080E5 PtypMultipleBinary, 0x1102 PtypMultipleBinary 0x1102 Contact Properties [MS-OXOCNTC] section 2.2.1.9.4
74 PidLidContactLinkName PSETID_Common {00062008-0000-0000-C000-000000000046} PSETID_Common {00062008-0000-0000-C000-000000000046} 0x00008586 PtypString, 0x001F PtypString 0x001F Contact Properties [MS-OXCMSG] section 2.2.1.59.3
75 PidLidContactLinkSearchKey Contains the list of SearchKeys for a Contact object linked to by the Message object. PSETID_Common {00062008-0000-0000-C000-000000000046} PSETID_Common {00062008-0000-0000-C000-000000000046} 0x00008584 PtypBinary, 0x0102 PtypBinary 0x0102 Contact Properties [MS-OXCMSG] section 2.2.1.59.4
76 PidLidContactLinkSMTPAddressCache Contains a list of the SMTP addresses that are used by the contact. PSETID_Address {00062004-0000-0000-C000-000000000046} PSETID_Address {00062004-0000-0000-C000-000000000046} 0x000080E3 PtypMultipleString, 0x101F PtypMultipleString 0x101F Contact Properties [MS-OXOCNTC] section 2.2.1.9.5
77 PidLidContacts Contains the PidTagDisplayName property (section 2.677) of each Address Book EntryID referenced in the value of the PidLidContactLinkEntry property (section 2.70). PSETID_Common {00062008-0000-0000-C000-000000000046} PSETID_Common {00062008-0000-0000-C000-000000000046} 0x0000853A PtypMultipleString, 0x101F PtypMultipleString 0x101F General Message Properties [MS-OXCMSG] section 2.2.1.59.2
78 PidLidContactUserField1 Contains text used to add custom text to a business card representation of a Contact object. PSETID_Address {00062004-0000-0000-C000-000000000046} PSETID_Address {00062004-0000-0000-C000-000000000046} 0x0000804F http://schemas.microsoft.com/exchange/extensionattribute1 PtypString, 0x001F PtypString 0x001F Contact Properties [MS-OXOCNTC] section 2.2.1.7.3
79 PidLidContactUserField2 Contains text used to add custom text to a business card representation of a Contact object. PSETID_Address {00062004-0000-0000-C000-000000000046} PSETID_Address {00062004-0000-0000-C000-000000000046} 0x00008050 http://schemas.microsoft.com/exchange/extensionattribute2 PtypString, 0x001F PtypString 0x001F Contact Properties [MS-OXOCNTC] section 2.2.1.7.3
80 PidLidContactUserField3 Contains text used to add custom text to a business card representation of a Contact object. PSETID_Address {00062004-0000-0000-C000-000000000046} PSETID_Address {00062004-0000-0000-C000-000000000046} 0x00008051 http://schemas.microsoft.com/exchange/extensionattribute3 PtypString, 0x001F PtypString 0x001F Contact Properties [MS-OXOCNTC] section 2.2.1.7.3
81 PidLidContactUserField4 Contains text used to add custom text to a business card representation of a Contact object. PSETID_Address {00062004-0000-0000-C000-000000000046} PSETID_Address {00062004-0000-0000-C000-000000000046} 0x00008052 http://schemas.microsoft.com/exchange/extensionattribute4 PtypString, 0x001F PtypString 0x001F Contact Properties [MS-OXOCNTC] section 2.2.1.7.3
82 PidLidConversationActionLastAppliedTime Contains the time, in UTC, that an Email object was last received in the conversation, or the last time that the user modified the conversation action, whichever occurs later. PSETID_Common {00062008-0000-0000-C000-000000000046} PSETID_Common {00062008-0000-0000-C000-000000000046} 0x000085CA PtypTime, 0x0040 PtypTime 0x0040 Conversation Actions [MS-OXOCFG] section 2.2.8.1
83 PidLidConversationActionMaxDeliveryTime Contains the maximum value of the PidTagMessageDeliveryTime property (section 2.791) of all of the Email objects modified in response to the last time that the user changed a conversation action on the client. PSETID_Common {00062008-0000-0000-C000-000000000046} PSETID_Common {00062008-0000-0000-C000-000000000046} 0x000085C8 PtypTime, 0x0040 PtypTime 0x0040 Conversation Actions [MS-OXOCFG] section 2.2.8.2
84 PidLidConversationActionMoveFolderEid Contains the EntryID for the destination folder. PSETID_Common {00062008-0000-0000-C000-000000000046} PSETID_Common {00062008-0000-0000-C000-000000000046} 0x000085C6 PtypBinary, 0x0102 PtypBinary 0x0102 Conversation Actions [MS-OXOCFG] section 2.2.8.3
85 PidLidConversationActionMoveStoreEid Contains the EntryID for a move to a folder in a different message store. PSETID_Common {00062008-0000-0000-C000-000000000046} PSETID_Common {00062008-0000-0000-C000-000000000046} 0x000085C7 PtypBinary, 0x0102 PtypBinary 0x0102 Conversation Actions [MS-OXOCFG] section 2.2.8.4
86 PidLidConversationActionVersion Contains the version of the conversation action FAI message. PSETID_Common {00062008-0000-0000-C000-000000000046} PSETID_Common {00062008-0000-0000-C000-000000000046} 0x000085CB PtypInteger32, 0x0003 PtypInteger32 0x0003 Conversation Actions [MS-OXOCFG] section 2.2.8.5
87 PidLidConversationProcessed Specifies a sequential number to be used in the processing of a conversation action. PSETID_Common {00062008-0000-0000-C000-000000000046} PSETID_Common {00062008-0000-0000-C000-000000000046} 0x000085C9 PtypInteger32, 0x0003 PtypInteger32 0x0003 Conversation Actions [MS-OXOCFG] section 2.2.8.6
88 PidLidCurrentVersion Specifies the build number of the client application that sent the message. PSETID_Common {00062008-0000-0000-C000-000000000046} PSETID_Common {00062008-0000-0000-C000-000000000046} 0x00008552 PtypInteger32, 0x0003 PtypInteger32 0x0003 General Message Properties [MS-OXCMSG] section 2.2.1.34
89 PidLidCurrentVersionName Specifies the name of the client application that sent the message. PSETID_Common {00062008-0000-0000-C000-000000000046} PSETID_Common {00062008-0000-0000-C000-000000000046} 0x00008554 PtypString, 0x001F PtypString 0x001F General Message Properties [MS-OXCMSG] section 2.2.1.35
90 PidLidDayInterval Identifies the day interval for the recurrence pattern. PSETID_Meeting {6ED8DA90-450B-101B-98DA-00AA003F1305} PSETID_Meeting {6ED8DA90-450B-101B-98DA-00AA003F1305} 0x00000011 http://schemas.microsoft.com/mapi/day_interval PtypInteger16, 0x0002 PtypInteger16 0x0002 Meetings [MS-XWDCAL] section 2.2.7.19
91 PidLidDayOfMonth Identifies the day of the month for the appointment or meeting. PSETID_Common {00062008-0000-0000-C000-000000000046} PSETID_Common {00062008-0000-0000-C000-000000000046} 0x00001000 http://schemas.microsoft.com/mapi/dayofmonth PtypInteger32, 0x0003 PtypInteger32 0x0003 Calendar [MS-XWDCAL] section 2.2.7.20
92 PidLidDelegateMail Indicates whether a delegate responded to the meeting request. PSETID_Meeting {6ED8DA90-450B-101B-98DA-00AA003F1305} PSETID_Meeting {6ED8DA90-450B-101B-98DA-00AA003F1305} 0x00000009 http://schemas.microsoft.com/mapi/delegate_mail PtypBoolean, 0x000B PtypBoolean 0x000B Meetings [MS-XWDCAL] section 2.2.7.21
93 PidLidDepartment This property is ignored by the server and is set to an empty string by the client. PSETID_Address {00062004-0000-0000-C000-000000000046} PSETID_Address {00062004-0000-0000-C000-000000000046} 0x00008010 PtypString, 0x001F PtypString 0x001F Contact Properties [MS-OXOCNTC] section 2.2.1.6.4
94 PidLidDirectory Specifies the directory server to be used. PSETID_Appointment {00062002-0000-0000-C000-000000000046} PSETID_Appointment {00062002-0000-0000-C000-000000000046} 0x00008242 PtypString, 0x001F PtypString 0x001F Conferencing [MS-OXOCAL] section 2.2.1.56.4
95 PidLidDistributionListChecksum Specifies the 32-bit cyclic redundancy check (CRC) polynomial checksum, as specified in [ISO/IEC8802-3], calculated on the value of the PidLidDistributionListMembers property (section 2.96). PSETID_Address {00062004-0000-0000-C000-000000000046} PSETID_Address {00062004-0000-0000-C000-000000000046} 0x0000804C PtypInteger32, 0x0003 PtypInteger32 0x0003 Contact Properties [MS-OXOCNTC] section 2.2.2.2.3
96 PidLidDistributionListMembers Specifies the list of EntryIDs of the objects corresponding to the members of the personal distribution list. PSETID_Address {00062004-0000-0000-C000-000000000046} PSETID_Address {00062004-0000-0000-C000-000000000046} 0x00008055 PtypMultipleBinary, 0x1102 PtypMultipleBinary 0x1102 Contact Properties [MS-OXOCNTC] section 2.2.2.2.1
97 PidLidDistributionListName Specifies the name of the personal distribution list. PSETID_Address {00062004-0000-0000-C000-000000000046} PSETID_Address {00062004-0000-0000-C000-000000000046} 0x00008053 PtypString, 0x001F PtypString 0x001F Contact Properties [MS-OXOCNTC] section 2.2.2.1.2
98 PidLidDistributionListOneOffMembers Specifies the list of one-off EntryIDs corresponding to the members of the personal distribution list. PSETID_Address {00062004-0000-0000-C000-000000000046} PSETID_Address {00062004-0000-0000-C000-000000000046} 0x00008054 PtypMultipleBinary, 0x1102 PtypMultipleBinary 0x1102 Contact Properties [MS-OXOCNTC] section 2.2.2.2.2
99 PidLidDistributionListStream Specifies the list of EntryIDs and one-off EntryIDs corresponding to the members of the personal distribution list. PSETID_Address {00062004-0000-0000-C000-000000000046} PSETID_Address {00062004-0000-0000-C000-000000000046} 0x00008064 PtypBinary, 0x0102 PtypBinary 0x0102 Contact Properties [MS-OXOCNTC] section 2.2.2.2.4
100 PidLidEmail1AddressType Specifies the address type of an electronic address. PSETID_Address {00062004-0000-0000-C000-000000000046} PSETID_Address {00062004-0000-0000-C000-000000000046} 0x00008082 PtypString, 0x001F PtypString 0x001F Contact Properties [MS-OXOCNTC] section 2.2.1.2.2
101 PidLidEmail1DisplayName Specifies the user-readable display name for the email address. PSETID_Address {00062004-0000-0000-C000-000000000046} PSETID_Address {00062004-0000-0000-C000-000000000046} 0x00008080 PtypString, 0x001F PtypString 0x001F Contact Properties [MS-OXOCNTC] section 2.2.1.2.1
102 PidLidEmail1EmailAddress Specifies the email address of the contact. PSETID_Address {00062004-0000-0000-C000-000000000046} PSETID_Address {00062004-0000-0000-C000-000000000046} 0x00008083 PtypString, 0x001F PtypString 0x001F Contact Properties [MS-OXOCNTC] section 2.2.1.2.3
103 PidLidEmail1OriginalDisplayName Specifies the SMTP email address that corresponds to the email address for the Contact object. PSETID_Address {00062004-0000-0000-C000-000000000046} PSETID_Address {00062004-0000-0000-C000-000000000046} 0x00008084 PtypString, 0x001F PtypString 0x001F Contact Properties [MS-OXOCNTC] section 2.2.1.2.4
104 PidLidEmail1OriginalEntryId Specifies the EntryID of the object corresponding to this electronic address. PSETID_Address {00062004-0000-0000-C000-000000000046} PSETID_Address {00062004-0000-0000-C000-000000000046} 0x00008085 PtypBinary, 0x0102 PtypBinary 0x0102 Contact Properties [MS-OXOCNTC] section 2.2.1.2.5
105 PidLidEmail2AddressType Specifies the address type of the electronic address. PSETID_Address {00062004-0000-0000-C000-000000000046} PSETID_Address {00062004-0000-0000-C000-000000000046} 0x00008092 PtypString, 0x001F PtypString 0x001F Contact Properties [MS-OXOCNTC] section 2.2.1.2.2
106 PidLidEmail2DisplayName Specifies the user-readable display name for the email address. PSETID_Address {00062004-0000-0000-C000-000000000046} PSETID_Address {00062004-0000-0000-C000-000000000046} 0x00008090 PtypString, 0x001F PtypString 0x001F Contact Properties [MS-OXOCNTC] section 2.2.1.2.1
107 PidLidEmail2EmailAddress Specifies the email address of the contact. PSETID_Address {00062004-0000-0000-C000-000000000046} PSETID_Address {00062004-0000-0000-C000-000000000046} 0x00008093 PtypString, 0x001F PtypString 0x001F Contact Properties [MS-OXOCNTC] section 2.2.1.2.3
108 PidLidEmail2OriginalDisplayName Specifies the SMTP email address that corresponds to the email address for the Contact object. PSETID_Address {00062004-0000-0000-C000-000000000046} PSETID_Address {00062004-0000-0000-C000-000000000046} 0x00008094 PtypString, 0x001F PtypString 0x001F Contact Properties [MS-OXOCNTC] section 2.2.1.2.4
109 PidLidEmail2OriginalEntryId Specifies the EntryID of the object that corresponds to this electronic address. PSETID_Address {00062004-0000-0000-C000-000000000046} PSETID_Address {00062004-0000-0000-C000-000000000046} 0x00008095 PtypBinary, 0x0102 PtypBinary 0x0102 Contact Properties [MS-OXOCNTC] section 2.2.1.2.5
110 PidLidEmail3AddressType Specifies the address type of the electronic address. PSETID_Address {00062004-0000-0000-C000-000000000046} PSETID_Address {00062004-0000-0000-C000-000000000046} 0x000080A2 PtypString, 0x001F PtypString 0x001F Contact Properties [MS-OXOCNTC] section 2.2.1.2.2
111 PidLidEmail3DisplayName Specifies the user-readable display name for the email address. PSETID_Address {00062004-0000-0000-C000-000000000046} PSETID_Address {00062004-0000-0000-C000-000000000046} 0x000080A0 PtypString, 0x001F PtypString 0x001F Contact Properties [MS-OXOCNTC] section 2.2.1.2.1
112 PidLidEmail3EmailAddress Specifies the email address of the contact. PSETID_Address {00062004-0000-0000-C000-000000000046} PSETID_Address {00062004-0000-0000-C000-000000000046} 0x000080A3 PtypString, 0x001F PtypString 0x001F Contact Properties [MS-OXOCNTC] section 2.2.1.2.3
113 PidLidEmail3OriginalDisplayName Specifies the SMTP email address that corresponds to the email address for the Contact object. PSETID_Address {00062004-0000-0000-C000-000000000046} PSETID_Address {00062004-0000-0000-C000-000000000046} 0x000080A4 PtypString, 0x001F PtypString 0x001F Contact Properties [MS-OXOCNTC] section 2.2.1.2.4
114 PidLidEmail3OriginalEntryId Specifies the EntryID of the object that corresponds to this electronic address. PSETID_Address {00062004-0000-0000-C000-000000000046} PSETID_Address {00062004-0000-0000-C000-000000000046} 0x000080A5 PtypBinary, 0x0102 PtypBinary 0x0102 Contact Properties [MS-OXOCNTC] section 2.2.1.2.5
115 PidLidEndRecurrenceDate Identifies the end date of the recurrence range. PSETID_Meeting {6ED8DA90-450B-101B-98DA-00AA003F1305} PSETID_Meeting {6ED8DA90-450B-101B-98DA-00AA003F1305} 0x0000000F http://schemas.microsoft.com/mapi/end_recur_date PtypInteger32, 0x0003 PtypInteger32 0x0003 Meetings [MS-XWDCAL] section 2.2.7.22
116 PidLidEndRecurrenceTime Identifies the end time of the recurrence range. PSETID_Meeting {6ED8DA90-450B-101B-98DA-00AA003F1305} PSETID_Meeting {6ED8DA90-450B-101B-98DA-00AA003F1305} 0x00000010 http://schemas.microsoft.com/mapi/end_recur_time PtypInteger32, 0x0003 PtypInteger32 0x0003 Meetings [MS-XWDCAL] section 2.2.7.23
117 PidLidExceptionReplaceTime Specifies the date and time, in UTC, within a recurrence pattern that an exception will replace. PSETID_Appointment {00062002-0000-0000-C000-000000000046} PSETID_Appointment {00062002-0000-0000-C000-000000000046} 0x00008228 PtypTime, 0x0040 PtypTime 0x0040 Calendar [MS-OXOCAL] section 2.2.10.2.5
118 PidLidFax1AddressType Contains the string value “FAX”. PSETID_Address {00062004-0000-0000-C000-000000000046} PSETID_Address {00062004-0000-0000-C000-000000000046} 0x000080B2 PtypString, 0x001F PtypString 0x001F Contact Properties [MS-OXOCNTC] section 2.2.1.2.7
119 PidLidFax1EmailAddress Contains a user-readable display name, followed by the “@” character, followed by a fax number. PSETID_Address {00062004-0000-0000-C000-000000000046} PSETID_Address {00062004-0000-0000-C000-000000000046} 0x000080B3 PtypString, 0x001F PtypString 0x001F Contact Properties [MS-OXOCNTC] section 2.2.1.2.8
120 PidLidFax1OriginalDisplayName Contains the same value as the PidTagNormalizedSubject property (section 2.814). PSETID_Address {00062004-0000-0000-C000-000000000046} PSETID_Address {00062004-0000-0000-C000-000000000046} 0x000080B4 PtypString, 0x001F PtypString 0x001F Contact Properties [MS-OXOCNTC] section 2.2.1.2.9
121 PidLidFax1OriginalEntryId Specifies a one-off EntryID that corresponds to this fax address. PSETID_Address {00062004-0000-0000-C000-000000000046} PSETID_Address {00062004-0000-0000-C000-000000000046} 0x000080B5 PtypBinary, 0x0102 PtypBinary 0x0102 Contact Properties [MS-OXOCNTC] section 2.2.1.2.10
122 PidLidFax2AddressType Contains the string value “FAX”. PSETID_Address {00062004-0000-0000-C000-000000000046} PSETID_Address {00062004-0000-0000-C000-000000000046} 0x000080C2 PtypString, 0x001F PtypString 0x001F Contact Properties [MS-OXOCNTC] section 2.2.1.2.7
123 PidLidFax2EmailAddress Contains a user-readable display name, followed by the “@” character, followed by a fax number. PSETID_Address {00062004-0000-0000-C000-000000000046} PSETID_Address {00062004-0000-0000-C000-000000000046} 0x000080C3 PtypString, 0x001F PtypString 0x001F Contact Properties [MS-OXOCNTC] section 2.2.1.2.8
124 PidLidFax2OriginalDisplayName Contains the same value as the PidTagNormalizedSubject property (section 2.814). PSETID_Address {00062004-0000-0000-C000-000000000046} PSETID_Address {00062004-0000-0000-C000-000000000046} 0x000080C4 PtypString, 0x001F PtypString 0x001F Contact Properties [MS-OXOCNTC] section 2.2.1.2.9
125 PidLidFax2OriginalEntryId Specifies a one-off EntryID corresponding to this fax address. PSETID_Address {00062004-0000-0000-C000-000000000046} PSETID_Address {00062004-0000-0000-C000-000000000046} 0x000080C5 PtypBinary, 0x0102 PtypBinary 0x0102 Contact Properties [MS-OXOCNTC] section 2.2.1.2.10
126 PidLidFax3AddressType Contains the string value “FAX”. PSETID_Address {00062004-0000-0000-C000-000000000046} PSETID_Address {00062004-0000-0000-C000-000000000046} 0x000080D2 PtypString, 0x001F PtypString 0x001F Contact Properties [MS-OXOCNTC] section 2.2.1.2.7
127 PidLidFax3EmailAddress Contains a user-readable display name, followed by the “@” character, followed by a fax number. PSETID_Address {00062004-0000-0000-C000-000000000046} PSETID_Address {00062004-0000-0000-C000-000000000046} 0x000080D3 PtypString, 0x001F PtypString 0x001F Contact Properties [MS-OXOCNTC] section 2.2.1.2.8
128 PidLidFax3OriginalDisplayName Contains the same value as the PidTagNormalizedSubject property (section 2.814). PSETID_Address {00062004-0000-0000-C000-000000000046} PSETID_Address {00062004-0000-0000-C000-000000000046} 0x000080D4 PtypString, 0x001F PtypString 0x001F Contact Properties [MS-OXOCNTC] section 2.2.1.2.9
129 PidLidFax3OriginalEntryId Specifies a one-off EntryID that corresponds to this fax address. PSETID_Address {00062004-0000-0000-C000-000000000046} PSETID_Address {00062004-0000-0000-C000-000000000046} 0x000080D5 PtypBinary, 0x0102 PtypBinary 0x0102 Contact Properties [MS-OXOCNTC] section 2.2.1.2.10
130 PidLidFExceptionalAttendees Indicates that the object is a Recurring Calendar object with one or more exceptions, and that at least one of the Exception Embedded Message objects has at least one RecipientRow structure, as described in [MS-OXCDATA] section 2.8.3. PSETID_Appointment {00062002-0000-0000-C000-000000000046} PSETID_Appointment {00062002-0000-0000-C000-000000000046} 0x0000822B PtypBoolean, 0x000B PtypBoolean 0x000B Meetings [MS-OXOCAL] section 2.2.2.3
131 PidLidFExceptionalBody Indicates that the Exception Embedded Message object has a body that differs from the Recurring Calendar object. PSETID_Appointment {00062002-0000-0000-C000-000000000046} PSETID_Appointment {00062002-0000-0000-C000-000000000046} 0x00008206 PtypBoolean, 0x000B PtypBoolean 0x000B Meetings [MS-OXOCAL] section 2.2.10.2.6
132 PidLidFileUnder Specifies the name under which to file a contact when displaying a list of contacts. PSETID_Address {00062004-0000-0000-C000-000000000046} PSETID_Address {00062004-0000-0000-C000-000000000046} 0x00008005 PtypString, 0x001F PtypString 0x001F Contact Properties [MS-OXOCNTC] section 2.2.1.1.11
133 PidLidFileUnderId Specifies how to generate and recompute the value of the PidLidFileUnder property (section 2.132) when other contact name properties change. PSETID_Address {00062004-0000-0000-C000-000000000046} PSETID_Address {00062004-0000-0000-C000-000000000046} 0x00008006 PtypInteger32, 0x0003 PtypInteger32 0x0003 Contact Properties [MS-OXOCNTC] section 2.2.1.1.12
134 PidLidFileUnderList Specifies a list of possible values for the PidLidFileUnderId property (section 2.133). PSETID_Address {00062004-0000-0000-C000-000000000046} PSETID_Address {00062004-0000-0000-C000-000000000046} 0x00008026 PtypMultipleInteger32, 0x1003 PtypMultipleInteger32 0x1003 Contact Properties [MS-OXOCNTC] section 2.2.1.1.13
135 PidLidFInvited Indicates whether invitations have been sent for the meeting that this Meeting object represents. PSETID_Appointment {00062002-0000-0000-C000-000000000046} PSETID_Appointment {00062002-0000-0000-C000-000000000046} 0x00008229 http://schemas.microsoft.com/mapi/finvited PtypBoolean, 0x000B PtypBoolean 0x000B Meetings [MS-OXOCAL] section 2.2.4.4
136 PidLidFlagRequest Contains user-specifiable text to be associated with the flag. PSETID_Common {00062008-0000-0000-C000-000000000046} PSETID_Common {00062008-0000-0000-C000-000000000046} 0x00008530 urn:schemas:httpmail:messageflag, http://schemas.microsoft.com/mapi/request PtypString, 0x001F PtypString 0x001F Flagging [MS-OXOFLAG] section 2.2.1.9
137 PidLidFlagString Contains an index identifying one of a set of pre-defined text strings to be associated with the flag. PSETID_Common {00062008-0000-0000-C000-000000000046} PSETID_Common {00062008-0000-0000-C000-000000000046} 0x000085C0 PtypInteger32, 0x0003 PtypInteger32 0x0003 Tasks [MS-OXOFLAG] section 2.2.1.10
138 PidLidForwardInstance Indicates whether the Meeting Request object represents an exception to a recurring series, and whether it was forwarded (even when forwarded by the organizer) rather than being an invitation sent by the organizer. PSETID_Appointment {00062002-0000-0000-C000-000000000046} PSETID_Appointment {00062002-0000-0000-C000-000000000046} 0x0000820A PtypBoolean, 0x000B PtypBoolean 0x000B Meetings [MS-OXOCAL] section 2.2.6.3
139 PidLidForwardNotificationRecipients Contains a list of RecipientRow structures, as described in [MS-OXCDATA] section 2.8.3, that indicate the recipients of a meeting forward. PSETID_Appointment {00062002-0000-0000-C000-000000000046} PSETID_Appointment {00062002-0000-0000-C000-000000000046} 0x00008261 PtypBinary, 0x0102 PtypBinary 0x0102 Meetings [MS-OXOCAL] section 2.2.9.3
140 PidLidFOthersAppointment Indicates whether the Calendar folder from which the meeting was opened is another user’s calendar. PSETID_Appointment {00062002-0000-0000-C000-000000000046} PSETID_Appointment {00062002-0000-0000-C000-000000000046} 0x0000822F PtypBoolean, 0x000B PtypBoolean 0x000B Meetings [MS-XWDCAL] section 2.2.7.26
141 PidLidFreeBusyLocation Specifies a URL path from which a client can retrieve free/busy status information for the contact. PSETID_Address {00062004-0000-0000-C000-000000000046} PSETID_Address {00062004-0000-0000-C000-000000000046} 0x000080D8 urn:schemas:calendar:fburl PtypString, 0x001F PtypString 0x001F Contact Properties [MS-OXOCNTC] section 2.2.1.10.10
142 PidLidGlobalObjectId Contains an ID for an object that represents an exception to a recurring series. PSETID_Meeting {6ED8DA90-450B-101B-98DA-00AA003F1305} PSETID_Meeting {6ED8DA90-450B-101B-98DA-00AA003F1305} 0x00000003 PtypBinary, 0x0102 PtypBinary 0x0102 Meetings [MS-OXOCAL] section 2.2.1.27
143 PidLidHasPicture Specifies whether the attachment has a picture. PSETID_Address {00062004-0000-0000-C000-000000000046} PSETID_Address {00062004-0000-0000-C000-000000000046} 0x00008015 PtypBoolean, 0x000B PtypBoolean 0x000B Contact Properties [MS-OXOCNTC] section 2.2.1.8.1
144 PidLidHomeAddress Specifies the complete address of the home address of the contact. PSETID_Address {00062004-0000-0000-C000-000000000046} PSETID_Address {00062004-0000-0000-C000-000000000046} 0x0000801A urn:schemas:contacts:homepostaladdress PtypString, 0x001F PtypString 0x001F Contact Properties [MS-OXOCNTC] section 2.2.1.3.8
145 PidLidHomeAddressCountryCode Specifies the country code portion of the home address of the contact. PSETID_Address {00062004-0000-0000-C000-000000000046} PSETID_Address {00062004-0000-0000-C000-000000000046} 0x000080DA PtypString, 0x001F PtypString 0x001F Contact Properties [MS-OXOCNTC] section 2.2.1.3.6
146 PidLidHtml Specifies the business webpage URL of the contact. PSETID_Address {00062004-0000-0000-C000-000000000046} PSETID_Address {00062004-0000-0000-C000-000000000046} 0x0000802B PtypString, 0x001F PtypString 0x001F Contact Properties [MS-OXOCNTC] section 2.2.1.10.12
147 PidLidICalendarDayOfWeekMask Identifies the day of the week for the appointment or meeting. PSETID_Common {00062008-0000-0000-C000-000000000046} PSETID_Common {00062008-0000-0000-C000-000000000046} 0x00001001 PtypInteger32, 0x0003 PtypInteger32 0x0003 Calendar [MS-XWDCAL] section 2.2.7.27
148 PidLidInboundICalStream Contains the contents of the iCalendar MIME part of the original MIME message. PSETID_Appointment {00062002-0000-0000-C000-000000000046} PSETID_Appointment {00062002-0000-0000-C000-000000000046} 0x0000827A PtypBinary, 0x0102 PtypBinary 0x0102 Calendar [MS-OXCICAL] section 2.1.3.4.1
149 PidLidInfoPathFormName Contains the name of the form associated with this message. PSETID_Common {00062008-0000-0000-C000-000000000046} PSETID_Common {00062008-0000-0000-C000-000000000046} 0x000085B1 PtypString, 0x001F PtypString 0x001F Common [MS-OXCMSG] section 2.2.1.27
150 PidLidInstantMessagingAddress Specifies the instant messaging address of the contact. PSETID_Address {00062004-0000-0000-C000-000000000046} PSETID_Address {00062004-0000-0000-C000-000000000046} 0x00008062 PtypString, 0x001F PtypString 0x001F Contact Properties [MS-OXOCNTC] section 2.2.1.10.6
151 PidLidIntendedBusyStatus Contains the value of the PidLidBusyStatus property (section 2.47) on the Meeting object in the organizer’s calendar at the time that the Meeting Request object or Meeting Update object was sent. PSETID_Appointment {00062002-0000-0000-C000-000000000046} PSETID_Appointment {00062002-0000-0000-C000-000000000046} 0x00008224 http://schemas.microsoft.com/mapi/intendedbusystatus PtypInteger32, 0x0003 PtypInteger32 0x0003 Meetings [MS-OXOCAL] section 2.2.6.4
152 PidLidInternetAccountName Specifies the user-visible email account name through which the email message is sent. PSETID_Common {00062008-0000-0000-C000-000000000046} PSETID_Common {00062008-0000-0000-C000-000000000046} 0x00008580 PtypString, 0x001F PtypString 0x001F General Message Properties [MS-OXOMSG] section 2.2.1.62
153 PidLidInternetAccountStamp Specifies the email account ID through which the email message is sent. PSETID_Common {00062008-0000-0000-C000-000000000046} PSETID_Common {00062008-0000-0000-C000-000000000046} 0x00008581 PtypString, 0x001F PtypString 0x001F General Message Properties [MS-OXOMSG] section 2.2.1.63
154 PidLidIsContactLinked Specifies whether the contact is linked to other contacts. PSETID_Address {00062004-0000-0000-C000-000000000046} PSETID_Address {00062004-0000-0000-C000-000000000046} 0x000080E0 PtypBoolean, 0x000B PtypBoolean 0x000B Contact Properties [MS-OXOCNTC] section 2.2.1.9.6
155 PidLidIsException Indicates whether the object represents an exception (including an orphan instance). PSETID_Meeting {6ED8DA90-450B-101B-98DA-00AA003F1305} PSETID_Meeting {6ED8DA90-450B-101B-98DA-00AA003F1305} 0x0000000A http://schemas.microsoft.com/mapi/is_exception PtypBoolean, 0x000B PtypBoolean 0x000B Meetings [MS-OXOCAL] section 2.2.1.35
156 PidLidIsRecurring Specifies whether the object is associated with a recurring series. PSETID_Meeting {6ED8DA90-450B-101B-98DA-00AA003F1305} PSETID_Meeting {6ED8DA90-450B-101B-98DA-00AA003F1305} 0x00000005 http://schemas.microsoft.com/mapi/is_recurring PtypBoolean, 0x000B PtypBoolean 0x000B Meetings [MS-OXOCAL] section 2.2.1.13
157 PidLidIsSilent Indicates whether the user did not include any text in the body of the Meeting Response object. PSETID_Meeting {6ED8DA90-450B-101B-98DA-00AA003F1305} PSETID_Meeting {6ED8DA90-450B-101B-98DA-00AA003F1305} 0x00000004 http://schemas.microsoft.com/mapi/is_silent PtypBoolean, 0x000B PtypBoolean 0x000B Meetings [MS-OXOCAL] section 2.2.7.7
158 PidLidLinkedTaskItems Indicates whether the user did not include any text in the body of the Meeting Response object. PSETID_Appointment {00062002-0000-0000-C000-000000000046} PSETID_Appointment {00062002-0000-0000-C000-000000000046} 0x0000820C PtypMultipleBinary, 0x1102 PtypMultipleBinary 0x1102 Tasks [MS-OXOCAL] section 2.2.1.47
159 PidLidLocation Specifies the location of the event. PSETID_Appointment {00062002-0000-0000-C000-000000000046} PSETID_Appointment {00062002-0000-0000-C000-000000000046} 0x00008208 urn:schemas:calendar:location PtypString, 0x001F PtypString 0x001F Calendar [MS-OXOCAL] section 2.2.1.4
160 PidLidLogDocumentPosted Indicates whether the document was sent by email or posted to a server folder during journaling. PSETID_Log {0006200A-0000-0000-C000-000000000046} PSETID_Log {0006200A-0000-0000-C000-000000000046} 0x00008711 PtypBoolean, 0x000B PtypBoolean 0x000B Journal [MS-OXOJRNL] section 2.2.1.10
161 PidLidLogDocumentPrinted Indicates whether the document was printed during journaling. PSETID_Log {0006200A-0000-0000-C000-000000000046} PSETID_Log {0006200A-0000-0000-C000-000000000046} 0x0000870E PtypBoolean, 0x000B PtypBoolean 0x000B Journal [MS-OXOJRNL] section 2.2.1.7
162 PidLidLogDocumentRouted Indicates whether the document was sent to a routing recipient during journaling. PSETID_Log {0006200A-0000-0000-C000-000000000046} PSETID_Log {0006200A-0000-0000-C000-000000000046} 0x00008710 PtypBoolean, 0x000B PtypBoolean 0x000B Journal [MS-OXOJRNL] section 2.2.1.9
163 PidLidLogDocumentSaved Indicates whether the document was saved during journaling. PSETID_Log {0006200A-0000-0000-C000-000000000046} PSETID_Log {0006200A-0000-0000-C000-000000000046} 0x0000870F PtypBoolean, 0x000B PtypBoolean 0x000B Journal [MS-OXOJRNL] section 2.2.1.8
164 PidLidLogDuration Contains the duration, in minutes, of the activity. PSETID_Log {0006200A-0000-0000-C000-000000000046} PSETID_Log {0006200A-0000-0000-C000-000000000046} 0x00008707 PtypInteger32, 0x0003 PtypInteger32 0x0003 Journal [MS-OXOJRNL] section 2.2.1.5
165 PidLidLogEnd Contains the time, in UTC, at which the activity ended. PSETID_Log {0006200A-0000-0000-C000-000000000046} PSETID_Log {0006200A-0000-0000-C000-000000000046} 0x00008708 PtypTime, 0x0040 PtypTime 0x0040 Journal [MS-OXOJRNL] section 2.2.1.4
166 PidLidLogFlags Contains metadata about the Journal object. PSETID_Log {0006200A-0000-0000-C000-000000000046} PSETID_Log {0006200A-0000-0000-C000-000000000046} 0x0000870C PtypInteger32, 0x0003 PtypInteger32 0x0003 Journal [MS-OXOJRNL] section 2.2.1.6
167 PidLidLogStart Contains the time, in UTC, at which the activity began. PSETID_Log {0006200A-0000-0000-C000-000000000046} PSETID_Log {0006200A-0000-0000-C000-000000000046} 0x00008706 PtypTime, 0x0040 PtypTime 0x0040 Journal [MS-OXOJRNL] section 2.2.1.3
168 PidLidLogType Briefly describes the journal activity that is being recorded. PSETID_Log {0006200A-0000-0000-C000-000000000046} PSETID_Log {0006200A-0000-0000-C000-000000000046} 0x00008700 PtypString, 0x001F PtypString 0x001F Journal [MS-OXOJRNL] section 2.2.1.1
169 PidLidLogTypeDesc Contains an expanded description of the journal activity that is being recorded. PSETID_Log {0006200A-0000-0000-C000-000000000046} PSETID_Log {0006200A-0000-0000-C000-000000000046} 0x00008712 PtypString, 0x001F PtypString 0x001F Journal [MS-OXOJRNL] section 2.2.1.2
170 PidLidMeetingType Indicates the type of Meeting Request object or Meeting Update object. PSETID_Meeting {6ED8DA90-450B-101B-98DA-00AA003F1305} PSETID_Meeting {6ED8DA90-450B-101B-98DA-00AA003F1305} 0x00000026 PtypInteger32, 0x0003 PtypInteger32 0x0003 Meetings [MS-OXOCAL] section 2.2.6.5
171 PidLidMeetingWorkspaceUrl Specifies the URL of the Meeting Workspace that is associated with a Calendar object. PSETID_Appointment {00062002-0000-0000-C000-000000000046} PSETID_Appointment {00062002-0000-0000-C000-000000000046} 0x00008209 http://schemas.microsoft.com/mapi/meetingworkspaceurl PtypString, 0x001F PtypString 0x001F Meetings [MS-OXOCAL] section 2.2.1.48
172 PidLidMonthInterval Indicates the monthly interval of the appointment or meeting. PSETID_Meeting {6ED8DA90-450B-101B-98DA-00AA003F1305} PSETID_Meeting {6ED8DA90-450B-101B-98DA-00AA003F1305} 0x00000013 http://schemas.microsoft.com/mapi/month_interval PtypInteger16, 0x0002 PtypInteger16 0x0002 Meetings [MS-XWDCAL] section 2.2.7.33
173 PidLidMonthOfYear Indicates the month of the year in which the appointment or meeting occurs. PSETID_Common {00062008-0000-0000-C000-000000000046} PSETID_Common {00062008-0000-0000-C000-000000000046} 0x00001006 http://schemas.microsoft.com/mapi/monthofyear PtypInteger32, 0x0003 PtypInteger32 0x0003 Calendar [MS-XWDCAL] section 2.2.7.34
174 PidLidMonthOfYearMask Indicates the calculated month of the year in which the appointment or meeting occurs. PSETID_Meeting {6ED8DA90-450B-101B-98DA-00AA003F1305} PSETID_Meeting {6ED8DA90-450B-101B-98DA-00AA003F1305} 0x00000017 http://schemas.microsoft.com/mapi/moy_mask PtypInteger32, 0x0003 PtypInteger32 0x0003 Meetings [MS-XWDCAL] section 2.2.7.35
175 PidLidNetShowUrl Specifies the URL to be launched when the user joins the meeting. PSETID_Appointment {00062002-0000-0000-C000-000000000046} PSETID_Appointment {00062002-0000-0000-C000-000000000046} 0x00008248 PtypString, 0x001F PtypString 0x001F Conferencing [MS-OXOCAL] section 2.2.1.56.8
176 PidLidNoEndDateFlag Indicates whether the recurrence pattern has an end date. PSETID_Common {00062008-0000-0000-C000-000000000046} PSETID_Common {00062008-0000-0000-C000-000000000046} 0x0000100B PtypBoolean, 0x000B PtypBoolean 0x000B Calendar [MS-XWDCAL] section 2.2.7.36
177 PidLidNonSendableBcc Contains a list of all of the unsendable attendees who are also resources. PSETID_Common {00062008-0000-0000-C000-000000000046} PSETID_Common {00062008-0000-0000-C000-000000000046} 0x00008538 http://schemas.microsoft.com/mapi/nonsendablebcc PtypString, 0x001F PtypString 0x001F Meetings [MS-OXOCAL] section 2.2.1.21
178 PidLidNonSendableCc Contains a list of all of the unsendable attendees who are also optional attendees. PSETID_Common {00062008-0000-0000-C000-000000000046} PSETID_Common {00062008-0000-0000-C000-000000000046} 0x00008537 http://schemas.microsoft.com/mapi/nonsendablecc PtypString, 0x001F PtypString 0x001F Meetings [MS-OXOCAL] section 2.2.1.20
179 PidLidNonSendableTo Contains a list of all of the unsendable attendees who are also required attendees. PSETID_Common {00062008-0000-0000-C000-000000000046} PSETID_Common {00062008-0000-0000-C000-000000000046} 0x00008536 http://schemas.microsoft.com/mapi/nonsendableto PtypString, 0x001F PtypString 0x001F Meetings [MS-OXOCAL] section 2.2.1.19
180 PidLidNonSendBccTrackStatus Contains the value from the response table. PSETID_Common {00062008-0000-0000-C000-000000000046} PSETID_Common {00062008-0000-0000-C000-000000000046} 0x00008545 http://schemas.microsoft.com/mapi/nonsendbcctrackstatus PtypMultipleInteger32, 0x1003 PtypMultipleInteger32 0x1003 General Message Properties [MS-OXOCAL] section 2.2.1.24
181 PidLidNonSendCcTrackStatus Contains the value from the response table. PSETID_Common {00062008-0000-0000-C000-000000000046} PSETID_Common {00062008-0000-0000-C000-000000000046} 0x00008544 http://schemas.microsoft.com/mapi/nonsendcctrackstatus PtypMultipleInteger32, 0x1003 PtypMultipleInteger32 0x1003 General Message Properties [MS-OXOCAL] section 2.2.1.23
182 PidLidNonSendToTrackStatus Contains the value from the response table. PSETID_Common {00062008-0000-0000-C000-000000000046} PSETID_Common {00062008-0000-0000-C000-000000000046} 0x00008543 http://schemas.microsoft.com/mapi/nonsendtotrackstatus PtypMultipleInteger32, 0x1003 PtypMultipleInteger32 0x1003 General Message Properties [MS-OXOCAL] section 2.2.1.22
183 PidLidNoteColor Specifies the suggested background color of the Note object. PSETID_Note {0006200E-0000-0000-C000-000000000046} PSETID_Note {0006200E-0000-0000-C000-000000000046} 0x00008B00 PtypInteger32, 0x0003 PtypInteger32 0x0003 Sticky Notes [MS-OXONOTE] section 2.2.1.1
184 PidLidNoteHeight Specifies the height of the visible message window in pixels. PSETID_Note {0006200E-0000-0000-C000-000000000046} PSETID_Note {0006200E-0000-0000-C000-000000000046} 0x00008B03 PtypInteger32, 0x0003 PtypInteger32 0x0003 Sticky Notes [MS-OXONOTE] section 2.2.1.3
185 PidLidNoteWidth Specifies the width of the visible message window in pixels. PSETID_Note {0006200E-0000-0000-C000-000000000046} PSETID_Note {0006200E-0000-0000-C000-000000000046} 0x00008B02 PtypInteger32, 0x0003 PtypInteger32 0x0003 Sticky Notes [MS-OXONOTE] section 2.2.1.2
186 PidLidNoteX Specifies the distance, in pixels, from the left edge of the screen that a user interface displays a Note object. PSETID_Note {0006200E-0000-0000-C000-000000000046} PSETID_Note {0006200E-0000-0000-C000-000000000046} 0x00008B04 PtypInteger32, 0x0003 PtypInteger32 0x0003 Sticky Notes [MS-OXONOTE] section 2.2.1.4
187 PidLidNoteY Specifies the distance, in pixels, from the top edge of the screen that a user interface displays a Note object. PSETID_Note {0006200E-0000-0000-C000-000000000046} PSETID_Note {0006200E-0000-0000-C000-000000000046} 0x00008B05 PtypInteger32, 0x0003 PtypInteger32 0x0003 Sticky Notes [MS-OXONOTE] section 2.2.1.5
188 PidLidOccurrences Indicates the number of occurrences in the recurring appointment or meeting. PSETID_Common {00062008-0000-0000-C000-000000000046} PSETID_Common {00062008-0000-0000-C000-000000000046} 0x00001005 http://schemas.microsoft.com/mapi/occurrences PtypInteger32, 0x0003 PtypInteger32 0x0003 Calendar [MS-XWDCAL] section 2.2.7.43
189 PidLidOldLocation Indicates the original value of the PidLidLocation property (section 2.159) before a meeting update. PSETID_Meeting {6ED8DA90-450B-101B-98DA-00AA003F1305} PSETID_Meeting {6ED8DA90-450B-101B-98DA-00AA003F1305} 0x00000028 PtypString, 0x001F PtypString 0x001F Meetings [MS-OXOCAL] section 2.2.6.7
190 PidLidOldRecurrenceType Indicates the recurrence pattern for the appointment or meeting. PSETID_Meeting {6ED8DA90-450B-101B-98DA-00AA003F1305} PSETID_Meeting {6ED8DA90-450B-101B-98DA-00AA003F1305} 0x00000018 http://schemas.microsoft.com/mapi/recur_type PtypInteger16, 0x0002 PtypInteger16 0x0002 Meetings [MS-XWDCAL] section 2.2.7.44
191 PidLidOldWhenEndWhole Indicates the original value of the PidLidAppointmentEndWhole property (section 2.14) before a meeting update. PSETID_Meeting {6ED8DA90-450B-101B-98DA-00AA003F1305} PSETID_Meeting {6ED8DA90-450B-101B-98DA-00AA003F1305} 0x0000002A PtypTime, 0x0040 PtypTime 0x0040 Meetings [MS-OXOCAL] section 2.2.6.9
192 PidLidOldWhenStartWhole Indicates the original value of the PidLidAppointmentStartWhole property (section 2.29) before a meeting update. PSETID_Meeting {6ED8DA90-450B-101B-98DA-00AA003F1305} PSETID_Meeting {6ED8DA90-450B-101B-98DA-00AA003F1305} 0x00000029 PtypTime, 0x0040 PtypTime 0x0040 Meetings [MS-OXOCAL] section 2.2.6.8
193 PidLidOnlinePassword Specifies the password for a meeting on which the PidLidConferencingType property (section 2.66) has the value 0x00000002. PSETID_Appointment {00062002-0000-0000-C000-000000000046} PSETID_Appointment {00062002-0000-0000-C000-000000000046} 0x00008249 PtypString, 0x001F PtypString 0x001F Conferencing [MS-OXOCAL] section 2.2.1.56.9
194 PidLidOptionalAttendees Specifies optional attendees. PSETID_Meeting {6ED8DA90-450B-101B-98DA-00AA003F1305} PSETID_Meeting {6ED8DA90-450B-101B-98DA-00AA003F1305} 0x00000007 http://schemas.microsoft.com/mapi/optional_attendees PtypString, 0x001F PtypString 0x001F Meetings [MS-XWDCAL] section 2.2.7.45
195 PidLidOrganizerAlias Specifies the email address of the organizer. PSETID_Appointment {00062002-0000-0000-C000-000000000046} PSETID_Appointment {00062002-0000-0000-C000-000000000046} 0x00008243 PtypString, 0x001F PtypString 0x001F Conferencing [MS-OXOCAL] section 2.2.1.56.6
196 PidLidOriginalStoreEntryId Specifies the EntryID of the delegator’s message store. PSETID_Appointment {00062002-0000-0000-C000-000000000046} PSETID_Appointment {00062002-0000-0000-C000-000000000046} 0x00008237 PtypBinary, 0x0102 PtypBinary 0x0102 Meetings [MS-OXOCAL] section 2.2.4.9
197 PidLidOtherAddress Specifies the complete address of the other address of the contact. PSETID_Address {00062004-0000-0000-C000-000000000046} PSETID_Address {00062004-0000-0000-C000-000000000046} 0x0000801C urn:schemas:contacts:otherpostaladdress PtypString, 0x001F PtypString 0x001F Contact Properties [MS-OXOCNTC] section 2.2.1.3.8
198 PidLidOtherAddressCountryCode Specifies the country code portion of the other address of the contact. PSETID_Address {00062004-0000-0000-C000-000000000046} PSETID_Address {00062004-0000-0000-C000-000000000046} 0x000080DC PtypString, 0x001F PtypString 0x001F Contact Properties [MS-OXOCNTC] section 2.2.1.3.6
199 PidLidOwnerCriticalChange Specifies the date and time at which a Meeting Request object was sent by the organizer. PSETID_Meeting {6ED8DA90-450B-101B-98DA-00AA003F1305} PSETID_Meeting {6ED8DA90-450B-101B-98DA-00AA003F1305} 0x0000001A urn:schemas:calendar:dtstamp, http://schemas.microsoft.com/mapi/owner_critical_change PtypTime, 0x0040 PtypTime 0x0040 Meetings [MS-OXOCAL] section 2.2.1.34
200 PidLidOwnerName Indicates the name of the owner of the mailbox. PSETID_Appointment {00062002-0000-0000-C000-000000000046} PSETID_Appointment {00062002-0000-0000-C000-000000000046} 0x0000822E http://schemas.microsoft.com/mapi/ownername PtypString, 0x001F PtypString 0x001F Meetings [MS-XWDCAL] section 2.2.7.47
201 PidLidPendingStateForSiteMailboxDocument Specifies the synchronization state of the Document object that is in the Document Libraries folder of the site mailbox. PSETID_Common {00062008-0000-0000-C000-000000000046} PSETID_Common {00062008-0000-0000-C000-000000000046} 0x000085E0 PtypInteger32, 0x0003 PtypInteger32 0x0003 Site Mailbox [MS-OXODOC] section 2.2.1.34
202 PidLidPercentComplete Indicates whether a time-flagged Message object is complete. PSETID_Task {00062003-0000-0000-C000-000000000046} PSETID_Task {00062003-0000-0000-C000-000000000046} 0x00008102 PtypFloating64, 0x0005 PtypFloating64 0x0005 Tasks [MS-OXOFLAG] section 2.2.2.3
203 PidLidPostalAddressId Specifies which physical address is the mailing address for this contact. PSETID_Address {00062004-0000-0000-C000-000000000046} PSETID_Address {00062004-0000-0000-C000-000000000046} 0x00008022 urn:schemas:contacts:mailingaddressid PtypInteger32, 0x0003 PtypInteger32 0x0003 Contact Properties [MS-OXOCNTC] section 2.2.1.3.9
204 PidLidPostRssChannel Contains the contents of the title field from the XML of the Atom feed or RSS channel. PSETID_PostRss {00062041-0000-0000-C000-000000000046} PSETID_PostRss {00062041-0000-0000-C000-000000000046} 0x00008904 PtypString, 0x001F PtypString 0x001F RSS [MS-OXORSS] section 2.2.1.5
205 PidLidPostRssChannelLink Contains the URL of the RSS or Atom feed from which the XML file came. PSETID_PostRss {00062041-0000-0000-C000-000000000046} PSETID_PostRss {00062041-0000-0000-C000-000000000046} 0x00008900 PtypString, 0x001F PtypString 0x001F RSS [MS-OXORSS] section 2.2.1.1
206 PidLidPostRssItemGuid Contains a unique identifier for the RSS object. PSETID_PostRss {00062041-0000-0000-C000-000000000046} PSETID_PostRss {00062041-0000-0000-C000-000000000046} 0x00008903 PtypString, 0x001F PtypString 0x001F RSS [MS-OXORSS] section 2.2.1.4
207 PidLidPostRssItemHash Contains a hash of the feed XML computed by using an implementation-dependent algorithm. PSETID_PostRss {00062041-0000-0000-C000-000000000046} PSETID_PostRss {00062041-0000-0000-C000-000000000046} 0x00008902 PtypInteger32, 0x0003 PtypInteger32 0x0003 RSS [MS-OXORSS] section 2.2.1.3
208 PidLidPostRssItemLink Contains the URL of the link from an RSS or Atom item. PSETID_PostRss {00062041-0000-0000-C000-000000000046} PSETID_PostRss {00062041-0000-0000-C000-000000000046} 0x00008901 PtypString, 0x001F PtypString 0x001F RSS [MS-OXORSS] section 2.2.1.2
209 PidLidPostRssItemXml Contains the item element and all of its sub-elements from an RSS feed, or the entry element and all of its sub-elements from an Atom feed. PSETID_PostRss {00062041-0000-0000-C000-000000000046} PSETID_PostRss {00062041-0000-0000-C000-000000000046} 0x00008905 PtypString, 0x001F PtypString 0x001F RSS [MS-OXORSS] section 2.2.1.6
210 PidLidPostRssSubscription Contains the user’s preferred name for the RSS or Atom subscription. PSETID_PostRss {00062041-0000-0000-C000-000000000046} PSETID_PostRss {00062041-0000-0000-C000-000000000046} 0x00008906 PtypString, 0x001F PtypString 0x001F RSS [MS-OXORSS] section 2.2.1.7
211 PidLidPrivate Indicates whether the end user wishes for this Message object to be hidden from other users who have access to the Message object. PSETID_Common {00062008-0000-0000-C000-000000000046} PSETID_Common {00062008-0000-0000-C000-000000000046} 0x00008506 PtypBoolean, 0x000B PtypBoolean 0x000B General Message Properties [MS-OXCMSG] section 2.2.1.15
212 PidLidPromptSendUpdate Indicates that the Meeting Response object was out-of-date when it was received. PSETID_Common {00062008-0000-0000-C000-000000000046} PSETID_Common {00062008-0000-0000-C000-000000000046} 0x00008045 PtypBoolean, 0x000B PtypBoolean 0x000B Meeting Response [MS-OXOCAL] section 2.2.7.8
213 PidLidRecurrenceDuration Identifies the length, in minutes, of the appointment or meeting. PSETID_Common {00062008-0000-0000-C000-000000000046} PSETID_Common {00062008-0000-0000-C000-000000000046} 0x0000100D http://schemas.microsoft.com/mapi/recurduration PtypInteger32, 0x0003 PtypInteger32 0x0003 Calendar [MS-XWDCAL] section 2.2.7.48
214 PidLidRecurrencePattern Specifies a description of the recurrence pattern of the Calendar object. PSETID_Appointment {00062002-0000-0000-C000-000000000046} PSETID_Appointment {00062002-0000-0000-C000-000000000046} 0x00008232 http://schemas.microsoft.com/mapi/recurpattern PtypString, 0x001F PtypString 0x001F Calendar [MS-OXOCAL] section 2.2.1.46
215 PidLidRecurrenceType Specifies the recurrence type of the recurring series. PSETID_Appointment {00062002-0000-0000-C000-000000000046} PSETID_Appointment {00062002-0000-0000-C000-000000000046} 0x00008231 http://schemas.microsoft.com/mapi/recurtype PtypInteger32, 0x0003 PtypInteger32 0x0003 Calendar [MS-OXOCAL] section 2.2.1.45
216 PidLidRecurring Specifies whether the object represents a recurring series. PSETID_Appointment {00062002-0000-0000-C000-000000000046} PSETID_Appointment {00062002-0000-0000-C000-000000000046} 0x00008223 http://schemas.microsoft.com/mapi/recurring PtypBoolean, 0x000B PtypBoolean 0x000B Calendar [MS-OXOCAL] section 2.2.1.12
217 PidLidReferenceEntryId Specifies the value of the EntryID of the Contact object unless the Contact object is a copy of an earlier original. PSETID_Common {00062008-0000-0000-C000-000000000046} PSETID_Common {00062008-0000-0000-C000-000000000046} 0x000085BD PtypBinary, 0x0102 PtypBinary 0x0102 Contact Properties [MS-OXOCNTC] section 2.2.1.10.1
218 PidLidReminderDelta Specifies the interval, in minutes, between the time at which the reminder first becomes overdue and the start time of the Calendar object. PSETID_Common {00062008-0000-0000-C000-000000000046} PSETID_Common {00062008-0000-0000-C000-000000000046} 0x00008501 PtypInteger32, 0x0003 PtypInteger32 0x0003 Reminders [MS-OXORMDR] section 2.2.1.3
219 PidLidReminderFileParameter Specifies the filename of the sound that a client is to play when the reminder for that object becomes overdue. PSETID_Common {00062008-0000-0000-C000-000000000046} PSETID_Common {00062008-0000-0000-C000-000000000046} 0x0000851F http://schemas.microsoft.com/mapi/reminderfileparam PtypString, 0x001F PtypString 0x001F Reminders [MS-OXORMDR] section 2.2.1.7
220 PidLidReminderOverride Specifies whether the client is to respect the current values of the PidLidReminderPlaySound property (section 2.221) and the PidLidReminderFileParameter property (section 2.219), or use the default values for those properties. PSETID_Common {00062008-0000-0000-C000-000000000046} PSETID_Common {00062008-0000-0000-C000-000000000046} 0x0000851C http://schemas.microsoft.com/mapi/reminderoverride PtypBoolean, 0x000B PtypBoolean 0x000B Reminders [MS-OXORMDR] section 2.2.1.5
221 PidLidReminderPlaySound Specifies whether the client is to play a sound when the reminder becomes overdue. PSETID_Common {00062008-0000-0000-C000-000000000046} PSETID_Common {00062008-0000-0000-C000-000000000046} 0x0000851E http://schemas.microsoft.com/mapi/reminderplaysound PtypBoolean, 0x000B PtypBoolean 0x000B Reminders [MS-OXORMDR] section 2.2.1.6
222 PidLidReminderSet Specifies whether a reminder is set on the object. PSETID_Common {00062008-0000-0000-C000-000000000046} PSETID_Common {00062008-0000-0000-C000-000000000046} 0x00008503 http://schemas.microsoft.com/mapi/reminderset PtypBoolean, 0x000B PtypBoolean 0x000B Reminders [MS-OXORMDR] section 2.2.1.1
223 PidLidReminderSignalTime Specifies the point in time when a reminder transitions from pending to overdue. PSETID_Common {00062008-0000-0000-C000-000000000046} PSETID_Common {00062008-0000-0000-C000-000000000046} 0x00008560 http://schemas.microsoft.com/mapi/remindernexttime PtypTime, 0x0040 PtypTime 0x0040 Reminders [MS-OXORMDR] section 2.2.1.2
224 PidLidReminderTime Specifies the initial signal time for objects that are not Calendar objects. PSETID_Common {00062008-0000-0000-C000-000000000046} PSETID_Common {00062008-0000-0000-C000-000000000046} 0x00008502 http://schemas.microsoft.com/mapi/remindertime PtypTime, 0x0040 PtypTime 0x0040 Reminders [MS-OXORMDR] section 2.2.1.4
225 PidLidReminderTimeDate Indicates the time and date of the reminder for the appointment or meeting. PSETID_Common {00062008-0000-0000-C000-000000000046} PSETID_Common {00062008-0000-0000-C000-000000000046} 0x00008505 http://schemas.microsoft.com/mapi/remindertimedate PtypTime, 0x0040 PtypTime 0x0040 Reminders [MS-XWDCAL] section 2.2.7.59
226 PidLidReminderTimeTime Indicates the time of the reminder for the appointment or meeting. PSETID_Common {00062008-0000-0000-C000-000000000046} PSETID_Common {00062008-0000-0000-C000-000000000046} 0x00008504 http://schemas.microsoft.com/mapi/remindertimetime PtypTime, 0x0040 PtypTime 0x0040 Reminders [MS-XWDCAL] section 2.2.7.60
227 PidLidReminderType This property is not set and, if set, is ignored. PSETID_Common {00062008-0000-0000-C000-000000000046} PSETID_Common {00062008-0000-0000-C000-000000000046} 0x0000851D PtypInteger32, 0x0003 PtypInteger32 0x0003 Reminders [MS-OXORMDR] section 2.2.1.9
228 PidLidRemoteStatus Indicates the remote status of the calendar item. PSETID_Common {00062008-0000-0000-C000-000000000046} PSETID_Common {00062008-0000-0000-C000-000000000046} 0x00008511 http://schemas.microsoft.com/mapi/remotestatus PtypInteger32, 0x0003 PtypInteger32 0x0003 Run-time configuration [MS-XWDCAL] section 2.2.7.62
229 PidLidRequiredAttendees Identifies required attendees for the appointment or meeting. PSETID_Meeting {6ED8DA90-450B-101B-98DA-00AA003F1305} PSETID_Meeting {6ED8DA90-450B-101B-98DA-00AA003F1305} 0x00000006 http://schemas.microsoft.com/mapi/required_attendees PtypString, 0x001F PtypString 0x001F Meetings [MS-XWDCAL] section 2.2.7.63
230 PidLidResourceAttendees Identifies resource attendees for the appointment or meeting. PSETID_Meeting {6ED8DA90-450B-101B-98DA-00AA003F1305} PSETID_Meeting {6ED8DA90-450B-101B-98DA-00AA003F1305} 0x00000008 http://schemas.microsoft.com/mapi/resource_attendees PtypString, 0x001F PtypString 0x001F Meetings [MS-XWDCAL] section 2.2.7.64
231 PidLidResponseStatus Specifies the response status of an attendee. PSETID_Appointment {00062002-0000-0000-C000-000000000046} PSETID_Appointment {00062002-0000-0000-C000-000000000046} 0x00008218 urn:schemas:calendar:attendeestatus, http://schemas.microsoft.com/mapi/responsestatus PtypInteger32, 0x0003 PtypInteger32 0x0003 Meetings [MS-OXOCAL] section 2.2.1.11
232 PidLidServerProcessed Indicates whether the Meeting Request object or Meeting Update object has been processed. PSETID_CalendarAssistant {11000E07-B51B-40D6-AF21-CAA85EDAB1D0} PSETID_CalendarAssistant {11000E07-B51B-40D6-AF21-CAA85EDAB1D0} 0x000085CC PtypBoolean, 0x000B PtypBoolean 0x000B Calendar [MS-OXOCAL] section 2.2.5.4
233 PidLidServerProcessingActions Indicates what processing actions have been taken on this Meeting Request object or Meeting Update object. PSETID_CalendarAssistant {11000E07-B51B-40D6-AF21-CAA85EDAB1D0} PSETID_CalendarAssistant {11000E07-B51B-40D6-AF21-CAA85EDAB1D0} 0x000085CD PtypInteger32, 0x0003 PtypInteger32 0x0003 Calendar [MS-OXOCAL] section 2.2.5.5
234 PidLidSharingAnonymity Contains a value that is ignored by the server no matter what value is generated by the client. PSETID_Sharing {00062040-0000-0000-C000-000000000046} PSETID_Sharing {00062040-0000-0000-C000-000000000046} 0x00008A19 PtypInteger32, 0x0003 PtypInteger32 0x0003 Sharing [MS-OXSHARE] section 2.2.6
235 PidLidSharingBindingEntryId Contains a value that is ignored by the server no matter what value is generated by the client. PSETID_Sharing {00062040-0000-0000-C000-000000000046} PSETID_Sharing {00062040-0000-0000-C000-000000000046} 0x00008A2D PtypBinary, 0x0102 PtypBinary 0x0102 Sharing [MS-OXSHARE] section 2.2.6
236 PidLidSharingBrowseUrl Contains a value that is ignored by the server no matter what value is generated by the client. PSETID_Sharing {00062040-0000-0000-C000-000000000046} PSETID_Sharing {00062040-0000-0000-C000-000000000046} 0x00008A51 PtypString, 0x001F PtypString 0x001F Sharing [MS-OXSHARE] section 2.2.6
237 PidLidSharingCapabilities Indicates that the Message object relates to a special folder. PSETID_Sharing {00062040-0000-0000-C000-000000000046} PSETID_Sharing {00062040-0000-0000-C000-000000000046} 0x00008A17 PtypInteger32, 0x0003 PtypInteger32 0x0003 Sharing [MS-OXSHARE] section 2.2.2.1
238 PidLidSharingConfigurationUrl Contains a zero-length string. PSETID_Sharing {00062040-0000-0000-C000-000000000046} PSETID_Sharing {00062040-0000-0000-C000-000000000046} 0x00008A24 PtypString, 0x001F PtypString 0x001F Sharing [MS-OXSHARE] section 2.2.2.3
239 PidLidSharingDataRangeEnd Contains a value that is ignored by the server no matter what value is generated by the client. PSETID_Sharing {00062040-0000-0000-C000-000000000046} PSETID_Sharing {00062040-0000-0000-C000-000000000046} 0x00008A45 PtypTime, 0x0040 PtypTime 0x0040 Sharing [MS-OXSHARE] section 2.2.6
240 PidLidSharingDataRangeStart Contains a value that is ignored by the server no matter what value is generated by the client. PSETID_Sharing {00062040-0000-0000-C000-000000000046} PSETID_Sharing {00062040-0000-0000-C000-000000000046} 0x00008A44 PtypTime, 0x0040 PtypTime 0x0040 Sharing [MS-OXSHARE] section 2.2.6
241 PidLidSharingDetail Contains a value that is ignored by the server no matter what value is generated by the client. PSETID_Sharing {00062040-0000-0000-C000-000000000046} PSETID_Sharing {00062040-0000-0000-C000-000000000046} 0x00008A2B PtypInteger32, 0x0003 PtypInteger32 0x0003 Sharing [MS-OXSHARE] section 2.2.6
242 PidLidSharingExtensionXml Contains a value that is ignored by the server no matter what value is generated by the client. PSETID_Sharing {00062040-0000-0000-C000-000000000046} PSETID_Sharing {00062040-0000-0000-C000-000000000046} 0x00008A21 PtypString, 0x001F PtypString 0x001F Sharing [MS-OXSHARE] section 2.2.6
243 PidLidSharingFilter Contains a value that is ignored by the server no matter what value is generated by the client. PSETID_Sharing {00062040-0000-0000-C000-000000000046} PSETID_Sharing {00062040-0000-0000-C000-000000000046} 0x00008A13 PtypBinary, 0x0102 PtypBinary 0x0102 Sharing [MS-OXSHARE] section 2.2.6
244 PidLidSharingFlags Contains a value that is ignored by the server no matter what value is generated by the client. PSETID_Sharing {00062040-0000-0000-C000-000000000046} PSETID_Sharing {00062040-0000-0000-C000-000000000046} 0x00008A0A PtypInteger32, 0x0003 PtypInteger32 0x0003 Sharing [MS-OXSHARE] section 2.2.6
245 PidLidSharingFlavor Indicates the type of Sharing Message object. PSETID_Sharing {00062040-0000-0000-C000-000000000046} PSETID_Sharing {00062040-0000-0000-C000-000000000046} 0x00008A18 PtypInteger32, 0x0003 PtypInteger32 0x0003 Sharing [MS-OXSHARE] section 2.2.2.5
246 PidLidSharingFolderEntryId Contains a value that is ignored by the server no matter what value is generated by the client. PSETID_Sharing {00062040-0000-0000-C000-000000000046} PSETID_Sharing {00062040-0000-0000-C000-000000000046} 0x00008A15 PtypBinary, 0x0102 PtypBinary 0x0102 Sharing [MS-OXSHARE] section 2.2.6
247 PidLidSharingIndexEntryId Contains a value that is ignored by the server no matter what value is generated by the client. PSETID_Sharing {00062040-0000-0000-C000-000000000046} PSETID_Sharing {00062040-0000-0000-C000-000000000046} 0x00008A2E PtypBinary, 0x0102 PtypBinary 0x0102 Sharing [MS-OXSHARE] section 2.2.6
248 PidLidSharingInitiatorEntryId Contains the value of the PidTagEntryId property (section 2.684) for the Address Book object of the currently logged-on user. PSETID_Sharing {00062040-0000-0000-C000-000000000046} PSETID_Sharing {00062040-0000-0000-C000-000000000046} 0x00008A09 PtypBinary, 0x0102 PtypBinary 0x0102 Sharing [MS-OXSHARE] section 2.2.2.7
249 PidLidSharingInitiatorName Contains the value of the PidTagDisplayName property (section 2.677) from the Address Book object identified by the PidLidSharingInitiatorEntryId property (section 2.248). PSETID_Sharing {00062040-0000-0000-C000-000000000046} PSETID_Sharing {00062040-0000-0000-C000-000000000046} 0x00008A07 PtypString, 0x001F PtypString 0x001F Sharing [MS-OXSHARE] section 2.2.2.8
250 PidLidSharingInitiatorSmtp Contains the value of the PidTagSmtpAddress property (section 2.1022) from the Address Book object identified by the PidLidSharingInitiatorEntryId property (section 2.248). PSETID_Sharing {00062040-0000-0000-C000-000000000046} PSETID_Sharing {00062040-0000-0000-C000-000000000046} 0x00008A08 PtypString, 0x001F PtypString 0x001F Sharing [MS-OXSHARE] section 2.2.2.9
251 PidLidSharingInstanceGuid Contains a value that is ignored by the server no matter what value is generated by the client. PSETID_Sharing {00062040-0000-0000-C000-000000000046} PSETID_Sharing {00062040-0000-0000-C000-000000000046} 0x00008A1C PtypBinary, 0x0102 PtypBinary 0x0102 Sharing [MS-OXSHARE] section 2.2.6
252 PidLidSharingLastAutoSyncTime Contains a value that is ignored by the server no matter what value is generated by the client. PSETID_Sharing {00062040-0000-0000-C000-000000000046} PSETID_Sharing {00062040-0000-0000-C000-000000000046} 0x00008A55 PtypTime, 0x0040 PtypTime 0x0040 Sharing [MS-OXSHARE] section 2.2.6
253 PidLidSharingLastSyncTime Contains a value that is ignored by the server no matter what value is generated by the client. PSETID_Sharing {00062040-0000-0000-C000-000000000046} PSETID_Sharing {00062040-0000-0000-C000-000000000046} 0x00008A1F PtypTime, 0x0040 PtypTime 0x0040 Sharing [MS-OXSHARE] section 2.2.6
254 PidLidSharingLocalComment Contains a value that is ignored by the server no matter what value is generated by the client. PSETID_Sharing {00062040-0000-0000-C000-000000000046} PSETID_Sharing {00062040-0000-0000-C000-000000000046} 0x00008A4D PtypString, 0x001F PtypString 0x001F Sharing [MS-OXSHARE] section 2.2.6
255 PidLidSharingLocalLastModificationTime Contains a value that is ignored by the server no matter what value is generated by the client. PSETID_Sharing {00062040-0000-0000-C000-000000000046} PSETID_Sharing {00062040-0000-0000-C000-000000000046} 0x00008A23 PtypTime, 0x0040 PtypTime 0x0040 Sharing [MS-OXSHARE] section 2.2.6
256 PidLidSharingLocalName Contains a value that is ignored by the server no matter what value is generated by the client. PSETID_Sharing {00062040-0000-0000-C000-000000000046} PSETID_Sharing {00062040-0000-0000-C000-000000000046} 0x00008A0F PtypString, 0x001F PtypString 0x001F Sharing [MS-OXSHARE] section 2.2.6
257 PidLidSharingLocalPath Contains a value that is ignored by the server no matter what value is generated by the client. PSETID_Sharing {00062040-0000-0000-C000-000000000046} PSETID_Sharing {00062040-0000-0000-C000-000000000046} 0x00008A0E PtypString, 0x001F PtypString 0x001F Sharing [MS-OXSHARE] section 2.2.6
258 PidLidSharingLocalStoreUid Contains a value that is ignored by the server no matter what value is generated by the client. PSETID_Sharing {00062040-0000-0000-C000-000000000046} PSETID_Sharing {00062040-0000-0000-C000-000000000046} 0x00008A49 PtypString, 0x001F PtypString 0x001F Sharing [MS-OXSHARE] section 2.2.6
259 PidLidSharingLocalType Contains the value of the PidTagContainerClass property (section 2.643) of the folder being shared. PSETID_Sharing {00062040-0000-0000-C000-000000000046} PSETID_Sharing {00062040-0000-0000-C000-000000000046} 0x00008A14 PtypString, 0x001F PtypString 0x001F Sharing [MS-OXSHARE] section 2.2.2.10
260 PidLidSharingLocalUid Contains a value that is ignored by the server no matter what value is generated by the client. PSETID_Sharing {00062040-0000-0000-C000-000000000046} PSETID_Sharing {00062040-0000-0000-C000-000000000046} 0x00008A10 PtypString, 0x001F PtypString 0x001F Sharing [MS-OXSHARE] section 2.2.6
261 PidLidSharingOriginalMessageEntryId Contains a value that is ignored by the server no matter what value is generated by the client. PSETID_Sharing {00062040-0000-0000-C000-000000000046} PSETID_Sharing {00062040-0000-0000-C000-000000000046} 0x00008A29 PtypBinary, 0x0102 PtypBinary 0x0102 Sharing [MS-OXSHARE] section 2.2.6
262 PidLidSharingParentBindingEntryId Contains a value that is ignored by the server no matter what value is generated by the client. PSETID_Sharing {00062040-0000-0000-C000-000000000046} PSETID_Sharing {00062040-0000-0000-C000-000000000046} 0x00008A5C PtypBinary, 0x0102 PtypBinary 0x0102 Sharing [MS-OXSHARE] section 2.2.6
263 PidLidSharingParticipants Contains a value that is ignored by the server no matter what value is generated by the client. PSETID_Sharing {00062040-0000-0000-C000-000000000046} PSETID_Sharing {00062040-0000-0000-C000-000000000046} 0x00008A1E PtypString, 0x001F PtypString 0x001F Sharing [MS-OXSHARE] section 2.2.6
264 PidLidSharingPermissions Contains a value that is ignored by the server no matter what value is generated by the client. PSETID_Sharing {00062040-0000-0000-C000-000000000046} PSETID_Sharing {00062040-0000-0000-C000-000000000046} 0x00008A1B PtypInteger32, 0x0003 PtypInteger32 0x0003 Sharing [MS-OXSHARE] section 2.2.6
265 PidLidSharingProviderExtension Contains a value that is ignored by the server no matter what value is generated by the client. PSETID_Sharing {00062040-0000-0000-C000-000000000046} PSETID_Sharing {00062040-0000-0000-C000-000000000046} 0x00008A0B PtypString, 0x001F PtypString 0x001F Sharing [MS-OXSHARE] section 2.2.6
266 PidLidSharingProviderGuid Contains the value “%xAE.F0.06.00.00.00.00.00.C0.00.00.00.00.00.00.46”. PSETID_Sharing {00062040-0000-0000-C000-000000000046} PSETID_Sharing {00062040-0000-0000-C000-000000000046} 0x00008A01 PtypBinary, 0x0102 PtypBinary 0x0102 Sharing [MS-OXSHARE] section 2.2.2.12
267 PidLidSharingProviderName Contains a user-displayable name of the sharing provider identified by the PidLidSharingProviderGuid property (section 2.266). PSETID_Sharing {00062040-0000-0000-C000-000000000046} PSETID_Sharing {00062040-0000-0000-C000-000000000046} 0x00008A02 PtypString, 0x001F PtypString 0x001F Sharing [MS-OXSHARE] section 2.2.2.14
268 PidLidSharingProviderUrl Contains a URL related to the sharing provider identified by the PidLidSharingProviderGuid property (section 2.266). PSETID_Sharing {00062040-0000-0000-C000-000000000046} PSETID_Sharing {00062040-0000-0000-C000-000000000046} 0x00008A03 PtypString, 0x001F PtypString 0x001F Sharing [MS-OXSHARE] section 2.2.2.16
269 PidLidSharingRangeEnd Contains a value that is ignored by the server no matter what value is generated by the client. PSETID_Sharing {00062040-0000-0000-C000-000000000046} PSETID_Sharing {00062040-0000-0000-C000-000000000046} 0x00008A47 PtypInteger32, 0x0003 PtypInteger32 0x0003 Sharing [MS-OXSHARE] section 2.2.6
270 PidLidSharingRangeStart Contains a value that is ignored by the server no matter what value is generated by the client. PSETID_Sharing {00062040-0000-0000-C000-000000000046} PSETID_Sharing {00062040-0000-0000-C000-000000000046} 0x00008A46 PtypInteger32, 0x0003 PtypInteger32 0x0003 Sharing [MS-OXSHARE] section 2.2.6
271 PidLidSharingReciprocation Contains a value that is ignored by the server no matter what value is generated by the client. PSETID_Sharing {00062040-0000-0000-C000-000000000046} PSETID_Sharing {00062040-0000-0000-C000-000000000046} 0x00008A1A PtypInteger32, 0x0003 PtypInteger32 0x0003 Sharing [MS-OXSHARE] section 2.2.6
272 PidLidSharingRemoteByteSize Contains a value that is ignored by the server no matter what value is generated by the client. PSETID_Sharing {00062040-0000-0000-C000-000000000046} PSETID_Sharing {00062040-0000-0000-C000-000000000046} 0x00008A4B PtypInteger32, 0x0003 PtypInteger32 0x0003 Sharing [MS-OXSHARE] section 2.2.6
273 PidLidSharingRemoteComment Contains a value that is ignored by the server no matter what value is generated by the client. PSETID_Sharing {00062040-0000-0000-C000-000000000046} PSETID_Sharing {00062040-0000-0000-C000-000000000046} 0x00008A2F PtypString, 0x001F PtypString 0x001F Sharing [MS-OXSHARE] section 2.2.6
274 PidLidSharingRemoteCrc Contains a value that is ignored by the server no matter what value is generated by the client. PSETID_Sharing {00062040-0000-0000-C000-000000000046} PSETID_Sharing {00062040-0000-0000-C000-000000000046} 0x00008A4C PtypInteger32, 0x0003 PtypInteger32 0x0003 Sharing [MS-OXSHARE] section 2.2.6
275 PidLidSharingRemoteLastModificationTime Contains a value that is ignored by the server no matter what value is generated by the client. PSETID_Sharing {00062040-0000-0000-C000-000000000046} PSETID_Sharing {00062040-0000-0000-C000-000000000046} 0x00008A22 PtypTime, 0x0040 PtypTime 0x0040 Sharing [MS-OXSHARE] section 2.2.6
276 PidLidSharingRemoteMessageCount Contains a value that is ignored by the server no matter what value is generated by the client. PSETID_Sharing {00062040-0000-0000-C000-000000000046} PSETID_Sharing {00062040-0000-0000-C000-000000000046} 0x00008A4F PtypInteger32, 0x0003 PtypInteger32 0x0003 Sharing [MS-OXSHARE] section 2.2.6
277 PidLidSharingRemoteName Contains the value of the PidTagDisplayName property (section 2.677) on the folder being shared. PSETID_Sharing {00062040-0000-0000-C000-000000000046} PSETID_Sharing {00062040-0000-0000-C000-000000000046} 0x00008A05 PtypString, 0x001F PtypString 0x001F Sharing [MS-OXSHARE] section 2.2.3.1
278 PidLidSharingRemotePass Contains a value that is ignored by the server no matter what value is generated by the client. PSETID_Sharing {00062040-0000-0000-C000-000000000046} PSETID_Sharing {00062040-0000-0000-C000-000000000046} 0x00008A0D PtypString, 0x001F PtypString 0x001F Sharing [MS-OXSHARE] section 2.2.6
279 PidLidSharingRemotePath Contains a value that is ignored by the server no matter what value is generated by the client. PSETID_Sharing {00062040-0000-0000-C000-000000000046} PSETID_Sharing {00062040-0000-0000-C000-000000000046} 0x00008A04 PtypString, 0x001F PtypString 0x001F Sharing [MS-OXSHARE] section 2.2.6
280 PidLidSharingRemoteStoreUid Contains a hexadecimal string representation of the value of the PidTagStoreEntryId property (section 2.1030) on the folder being shared. PSETID_Sharing {00062040-0000-0000-C000-000000000046} PSETID_Sharing {00062040-0000-0000-C000-000000000046} 0x00008A48 PtypString, 0x001F PtypString 0x001F Sharing [MS-OXSHARE] section 2.2.3.3
281 PidLidSharingRemoteType Contains the same value as the PidLidSharingLocalType property (section 2.259). PSETID_Sharing {00062040-0000-0000-C000-000000000046} PSETID_Sharing {00062040-0000-0000-C000-000000000046} 0x00008A1D PtypString, 0x001F PtypString 0x001F Sharing [MS-OXSHARE] section 2.2.3.5
282 PidLidSharingRemoteUid Contains the EntryID of the folder being shared. PSTID_Sharing {00062040-0000-0000-C000-000000000046} PSTID_Sharing {00062040-0000-0000-C000-000000000046} 0x00008A06 PtypString, 0x001F PtypString 0x001F Sharing [MS-OXSHARE] section 2.2.3.7
283 PidLidSharingRemoteUser Contains a value that is ignored by the server no matter what value is generated by the client. PSETID_Sharing {00062040-0000-0000-C000-000000000046} PSETID_Sharing {00062040-0000-0000-C000-000000000046} 0x00008A0C PtypString, 0x001F PtypString 0x001F Sharing [MS-OXSHARE] section 2.2.6
284 PidLidSharingRemoteVersion Contains a value that is ignored by the server no matter what value is generated by the client. PSETID_Sharing {00062040-0000-0000-C000-000000000046} PSETID_Sharing {00062040-0000-0000-C000-000000000046} 0x00008A5B PtypString, 0x001F PtypString 0x001F Sharing [MS-OXSHARE] section 2.2.6
285 PidLidSharingResponseTime Contains the time at which the recipient of the sharing request sent a sharing response. PSETID_Sharing {00062040-0000-0000-C000-000000000046} PSETID_Sharing {00062040-0000-0000-C000-000000000046} 0x00008A28 PtypTime, 0x0040 PtypTime 0x0040 Sharing [MS-OXSHARE] section 2.2.4.1
286 PidLidSharingResponseType Contains the type of response with which the recipient of the sharing request responded. PSETID_Sharing {00062040-0000-0000-C000-000000000046} PSETID_Sharing {00062040-0000-0000-C000-000000000046} 0x00008A27 PtypInteger32, 0x0003 PtypInteger32 0x0003 Sharing [MS-OXSHARE] section 2.2.4.2
287 PidLidSharingRoamLog Contains a value that is ignored by the server no matter what value is generated by the client. PSETID_Sharing {00062040-0000-0000-C000-000000000046} PSETID_Sharing {00062040-0000-0000-C000-000000000046} 0x00008A4E PtypInteger32, 0x0003 PtypInteger32 0x0003 Sharing [MS-OXSHARE] section 2.2.6
288 PidLidSharingStart Contains a value that is ignored by the server no matter what value is generated by the client. PSETID_Sharing {00062040-0000-0000-C000-000000000046} PSETID_Sharing {00062040-0000-0000-C000-000000000046} 0x00008A25 PtypTime, 0x0040 PtypTime 0x0040 Sharing [MS-OXSHARE] section 2.2.6
289 PidLidSharingStatus Contains a value that is ignored by the server no matter what value is generated by the client. PSETID_Sharing {00062040-0000-0000-C000-000000000046} PSETID_Sharing {00062040-0000-0000-C000-000000000046} 0x00008A00 PtypInteger32, 0x0003 PtypInteger32 0x0003 Sharing [MS-OXSHARE] section 2.2.6
290 PidLidSharingStop Contains a value that is ignored by the server no matter what value is generated by the client. PSETID_Sharing {00062040-0000-0000-C000-000000000046} PSETID_Sharing {00062040-0000-0000-C000-000000000046} 0x00008A26 PtypTime, 0x0040 PtypTime 0x0040 Sharing [MS-OXSHARE] section 2.2.6
291 PidLidSharingSyncFlags Contains a value that is ignored by the server no matter what value is generated by the client. PSETID_Sharing {00062040-0000-0000-C000-000000000046} PSETID_Sharing {00062040-0000-0000-C000-000000000046} 0x00008A60 PtypInteger32, 0x0003 PtypInteger32 0x0003 Sharing [MS-OXSHARE] section 2.2.6
292 PidLidSharingSyncInterval Contains a value that is ignored by the server no matter what value is generated by the client. PSETID_Sharing {00062040-0000-0000-C000-000000000046} PSETID_Sharing {00062040-0000-0000-C000-000000000046} 0x00008A2A PtypInteger32, 0x0003 PtypInteger32 0x0003 Sharing [MS-OXSHARE] section 2.2.6
293 PidLidSharingTimeToLive Contains a value that is ignored by the server no matter what value is generated by the client. PSETID_Sharing {00062040-0000-0000-C000-000000000046} PSETID_Sharing {00062040-0000-0000-C000-000000000046} 0x00008A2C PtypInteger32, 0x0003 PtypInteger32 0x0003 Sharing [MS-OXSHARE] section 2.2.6
294 PidLidSharingTimeToLiveAuto Contains a value that is ignored by the server no matter what value is generated by the client. PSETID_Sharing {00062040-0000-0000-C000-000000000046} PSETID_Sharing {00062040-0000-0000-C000-000000000046} 0x00008A56 PtypInteger32, 0x0003 PtypInteger32 0x0003 Sharing [MS-OXSHARE] section 2.2.6
295 PidLidSharingWorkingHoursDays Contains a value that is ignored by the server no matter what value is generated by the client. PSETID_Sharing {00062040-0000-0000-C000-000000000046} PSETID_Sharing {00062040-0000-0000-C000-000000000046} 0x00008A42 PtypInteger32, 0x0003 PtypInteger32 0x0003 Sharing [MS-OXSHARE] section 2.2.6
296 PidLidSharingWorkingHoursEnd Contains a value that is ignored by the server no matter what value is generated by the client. PSETID_Sharing {00062040-0000-0000-C000-000000000046} PSETID_Sharing {00062040-0000-0000-C000-000000000046} 0x00008A41 PtypTime, 0x0040 PtypTime 0x0040 Sharing [MS-OXSHARE] section 2.2.6
297 PidLidSharingWorkingHoursStart Contains a value that is ignored by the server no matter what value is generated by the client. PSETID_Sharing {00062040-0000-0000-C000-000000000046} PSETID_Sharing {00062040-0000-0000-C000-000000000046} 0x00008A40 PtypTime, 0x0040 PtypTime 0x0040 Sharing [MS-OXSHARE] section 2.2.6
298 PidLidSharingWorkingHoursTimeZone Contains a value that is ignored by the server no matter what value is generated by the client. PSETID_Sharing {00062040-0000-0000-C000-000000000046} PSETID_Sharing {00062040-0000-0000-C000-000000000046} 0x00008A43 PtypBinary, 0x0102 PtypBinary 0x0102 Sharing [MS-OXSHARE] section 2.2.6
299 PidLidSideEffects Specifies how a Message object is handled by the client in relation to certain user interface actions by the user, such as deleting a message. PSETID_Common {00062008-0000-0000-C000-000000000046} PSETID_Common {00062008-0000-0000-C000-000000000046} 0x00008510 PtypInteger32, 0x0003 PtypInteger32 0x0003 Run-time configuration [MS-OXCMSG] section 2.2.1.16
300 PidLidSingleBodyICal Indicates that the original MIME message contained a single MIME part. PSETID_Appointment {00062002-0000-0000-C000-000000000046} PSETID_Appointment {00062002-0000-0000-C000-000000000046} 0x0000827B PtypBoolean, 0x000B PtypBoolean 0x000B Calendar [MS-OXCICAL] section 2.1.3.4.2
301 PidLidSmartNoAttach Indicates whether the Message object has no end-user visible attachments. PSETID_Common {00062008-0000-0000-C000-000000000046} PSETID_Common {00062008-0000-0000-C000-000000000046} 0x00008514 PtypBoolean, 0x000B PtypBoolean 0x000B Run-time configuration [MS-OXCMSG] section 2.2.1.14
302 PidLidSpamOriginalFolder Specifies which folder a message was in before it was filtered into the Junk Email folder. PSETID_Common {00062008-0000-0000-C000-000000000046} PSETID_Common {00062008-0000-0000-C000-000000000046} 0x0000859C PtypBinary, 0x0102 PtypBinary 0x0102 Spam [MS-OXCSPAM] section 2.2.1.1
303 PidLidStartRecurrenceDate Identifies the start date of the recurrence pattern. PSETID_Meeting {6ED8DA90-450B-101B-98DA-00AA003F1305} PSETID_Meeting {6ED8DA90-450B-101B-98DA-00AA003F1305} 0x0000000D http://schemas.microsoft.com/mapi/start_recur_date PtypInteger32, 0x0003 PtypInteger32 0x0003 Meetings [MS-XWDCAL] section 2.2.7.66
304 PidLidStartRecurrenceTime Identifies the start time of the recurrence pattern. PSETID_Meeting {6ED8DA90-450B-101B-98DA-00AA003F1305} PSETID_Meeting {6ED8DA90-450B-101B-98DA-00AA003F1305} 0x0000000E http://schemas.microsoft.com/mapi/start_recur_time PtypInteger32, 0x0003 PtypInteger32 0x0003 Meetings [MS-XWDCAL] section 2.2.7.67
305 PidLidTaskAcceptanceState Indicates the acceptance state of the task. PSETID_Task {00062003-0000-0000-C000-000000000046} PSETID_Task {00062003-0000-0000-C000-000000000046} 0x0000812A PtypInteger32, 0x0003 PtypInteger32 0x0003 Tasks [MS-OXOTASK] section 2.2.2.2.30
306 PidLidTaskAccepted Indicates whether a task assignee has replied to a task request for this Task object. PSETID_Task {00062003-0000-0000-C000-000000000046} PSETID_Task {00062003-0000-0000-C000-000000000046} 0x00008108 PtypBoolean, 0x000B PtypBoolean 0x000B Tasks [MS-OXOTASK] section 2.2.2.2.7
307 PidLidTaskActualEffort Indicates the number of minutes that the user actually spent working on a task. PSETID_Task {00062003-0000-0000-C000-000000000046} PSETID_Task {00062003-0000-0000-C000-000000000046} 0x00008110 PtypInteger32, 0x0003 PtypInteger32 0x0003 Tasks [MS-OXOTASK] section 2.2.2.2.11
308 PidLidTaskAssigner Specifies the name of the user that last assigned the task. PSETID_Task {00062003-0000-0000-C000-000000000046} PSETID_Task {00062003-0000-0000-C000-000000000046} 0x00008121 PtypString, 0x001F PtypString 0x001F Tasks [MS-OXOTASK] section 2.2.2.2.24
309 PidLidTaskAssigners Contains a stack of entries, each of which represents a task assigner. PSETID_Task {00062003-0000-0000-C000-000000000046} PSETID_Task {00062003-0000-0000-C000-000000000046} 0x00008117 PtypBinary, 0x0102 PtypBinary 0x0102 Tasks [MS-OXOTASK] section 2.2.2.2.16
310 PidLidTaskComplete Indicates that the task is complete. PSETID_Task {00062003-0000-0000-C000-000000000046} PSETID_Task {00062003-0000-0000-C000-000000000046} 0x0000811C PtypBoolean, 0x000B PtypBoolean 0x000B Tasks [MS-OXOTASK] section 2.2.2.2.20
311 PidLidTaskCustomFlags The client can set this property, but it has no impact on the Task-Related Objects Protocol and is ignored by the server. PSETID_Task {00062003-0000-0000-C000-000000000046} PSETID_Task {00062003-0000-0000-C000-000000000046} 0x00008139 PtypInteger32, 0x0003 PtypInteger32 0x0003 Tasks [MS-OXOTASK] section 2.2.2.2.33
312 PidLidTaskDateCompleted Specifies the date when the user completed work on the task. PSETID_Task {00062003-0000-0000-C000-000000000046} PSETID_Task {00062003-0000-0000-C000-000000000046} 0x0000810F PtypTime, 0x0040 PtypTime 0x0040 Tasks [MS-OXOTASK] section 2.2.2.2.9
313 PidLidTaskDeadOccurrence Indicates whether new occurrences remain to be generated. PSETID_Task {00062003-0000-0000-C000-000000000046} PSETID_Task {00062003-0000-0000-C000-000000000046} 0x00008109 PtypBoolean, 0x000B PtypBoolean 0x000B Tasks [MS-OXOTASK] section 2.2.2.2.8
314 PidLidTaskDueDate Specifies the date by which the user expects work on the task to be complete. PSETID_Task {00062003-0000-0000-C000-000000000046} PSETID_Task {00062003-0000-0000-C000-000000000046} 0x00008105 PtypTime, 0x0040 PtypTime 0x0040 Tasks [MS-OXOTASK] section 2.2.2.2.5
315 PidLidTaskEstimatedEffort Indicates the number of minutes that the user expects to work on a task. PSETID_Task {00062003-0000-0000-C000-000000000046} PSETID_Task {00062003-0000-0000-C000-000000000046} 0x00008111 PtypInteger32, 0x0003 PtypInteger32 0x0003 Tasks [MS-OXOTASK] section 2.2.2.2.12
316 PidLidTaskFCreator Indicates that the Task object was originally created by the action of the current user or user agent instead of by the processing of a task request. PSETID_Task {00062003-0000-0000-C000-000000000046} PSETID_Task {00062003-0000-0000-C000-000000000046} 0x0000811E PtypBoolean, 0x000B PtypBoolean 0x000B Tasks [MS-OXOTASK] section 2.2.2.2.21
317 PidLidTaskFFixOffline Indicates the accuracy of the PidLidTaskOwner property (section 2.328). PSETID_Task {00062003-0000-0000-C000-000000000046} PSETID_Task {00062003-0000-0000-C000-000000000046} 0x0000812C PtypBoolean, 0x000B PtypBoolean 0x000B Tasks [MS-OXOTASK] section 2.2.2.2.31
318 PidLidTaskFRecurring Indicates whether the task includes a recurrence pattern. PSETID_Task {00062003-0000-0000-C000-000000000046} PSETID_Task {00062003-0000-0000-C000-000000000046} 0x00008126 PtypBoolean, 0x000B PtypBoolean 0x000B Tasks [MS-OXOTASK] section 2.2.2.2.28
319 PidLidTaskGlobalId Contains a unique GUID for this task, which is used to locate an existing task upon receipt of a task response or task update. PSETID_Common {00062008-0000-0000-C000-000000000046} PSETID_Common {00062008-0000-0000-C000-000000000046} 0x00008519 PtypBinary, 0x0102 PtypBinary 0x0102 Tasks [MS-OXOTASK] section 2.2.2.2.32
320 PidLidTaskHistory Indicates the type of change that was last made to the Task object. PSETID_Task {00062003-0000-0000-C000-000000000046} PSETID_Task {00062003-0000-0000-C000-000000000046} 0x0000811A PtypInteger32, 0x0003 PtypInteger32 0x0003 Tasks [MS-OXOTASK] section 2.2.2.2.18
321 PidLidTaskLastDelegate Contains the name of the user who most recently assigned the task, or the user to whom it was most recently assigned. PSETID_Task {00062003-0000-0000-C000-000000000046} PSETID_Task {00062003-0000-0000-C000-000000000046} 0x00008125 PtypString, 0x001F PtypString 0x001F Tasks [MS-OXOTASK] section 2.2.2.2.27
322 PidLidTaskLastUpdate Contains the date and time of the most recent change made to the Task object. PSETID_Task {00062003-0000-0000-C000-000000000046} PSETID_Task {00062003-0000-0000-C000-000000000046} 0x00008115 PtypTime, 0x0040 PtypTime 0x0040 Tasks [MS-OXOTASK] section 2.2.2.2.10
323 PidLidTaskLastUser Contains the name of the most recent user to have been the owner of the task. PSETID_Task {00062003-0000-0000-C000-000000000046} PSETID_Task {00062003-0000-0000-C000-000000000046} 0x00008122 PtypString, 0x001F PtypString 0x001F Tasks [MS-OXOTASK] section 2.2.2.2.25
324 PidLidTaskMode Specifies the assignment status of the embedded Task object. PSETID_Common {00062008-0000-0000-C000-000000000046} PSETID_Common {00062008-0000-0000-C000-000000000046} 0x00008518 PtypInteger32, 0x0003 PtypInteger32 0x0003 Tasks [MS-OXOTASK] section 2.2.3.2
325 PidLidTaskMultipleRecipients Provides optimization hints about the recipients of a Task object. PSETID_Task {00062003-0000-0000-C000-000000000046} PSETID_Task {00062003-0000-0000-C000-000000000046} 0x00008120 PtypInteger32, 0x0003 PtypInteger32 0x0003 Tasks [MS-OXOTASK] section 2.2.2.2.23
326 PidLidTaskNoCompute Not used. The client can set this property, but it has no impact on the Task-Related Objects Protocol and is ignored by the server. PSETID_Task {00062003-0000-0000-C000-000000000046} PSETID_Task {00062003-0000-0000-C000-000000000046} 0x00008124 PtypBoolean, 0x000B PtypBoolean 0x000B Tasks [MS-OXOTASK] section 2.2.2.2.35
327 PidLidTaskOrdinal Provides an aid to custom sorting of Task objects. PSETID_Task {00062003-0000-0000-C000-000000000046} PSETID_Task {00062003-0000-0000-C000-000000000046} 0x00008123 PtypInteger32, 0x0003 PtypInteger32 0x0003 Tasks [MS-OXOTASK] section 2.2.2.2.26
328 PidLidTaskOwner Contains the name of the owner of the task. PSETID_Task {00062003-0000-0000-C000-000000000046} PSETID_Task {00062003-0000-0000-C000-000000000046} 0x0000811F PtypString, 0x001F PtypString 0x001F Tasks [MS-OXOTASK] section 2.2.2.2.22
329 PidLidTaskOwnership Indicates the role of the current user relative to the Task object. PSETID_Task {00062003-0000-0000-C000-000000000046} PSETID_Task {00062003-0000-0000-C000-000000000046} 0x00008129 PtypInteger32, 0x0003 PtypInteger32 0x0003 Tasks [MS-OXOTASK] section 2.2.2.2.29
330 PidLidTaskRecurrence Contains a RecurrencePattern structure that provides information about recurring tasks. PSETID_Task {00062003-0000-0000-C000-000000000046} PSETID_Task {00062003-0000-0000-C000-000000000046} 0x00008116 PtypBinary, 0x0102 PtypBinary 0x0102 Tasks [MS-OXOTASK] section 2.2.2.2.15
331 PidLidTaskResetReminder Indicates whether future instances of recurring tasks need reminders, even though the value of the PidLidReminderSet property (section 2.222) is 0x00. PSETID_Task {00062003-0000-0000-C000-000000000046} PSETID_Task {00062003-0000-0000-C000-000000000046} 0x00008107 PtypBoolean, 0x000B PtypBoolean 0x000B Tasks [MS-OXOTASK] section 2.2.2.2.6
332 PidLidTaskRole Not used. The client can set this property, but it has no impact on the Task-Related Objects Protocol and is ignored by the server. PSETID_Task {00062003-0000-0000-C000-000000000046} PSETID_Task {00062003-0000-0000-C000-000000000046} 0x00008127 PtypString, 0x001F PtypString 0x001F Tasks [MS-OXOTASK] section 2.2.2.2.34
333 PidLidTaskStartDate Specifies the date on which the user expects work on the task to begin. PSETID_Task {00062003-0000-0000-C000-000000000046} PSETID_Task {00062003-0000-0000-C000-000000000046} 0x00008104 PtypTime, 0x0040 PtypTime 0x0040 Tasks [MS-OXOTASK] section 2.2.2.2.4
334 PidLidTaskState Indicates the current assignment state of the Task object. PSETID_Task {00062003-0000-0000-C000-000000000046} PSETID_Task {00062003-0000-0000-C000-000000000046} 0x00008113 PtypInteger32, 0x0003 PtypInteger32 0x0003 Tasks [MS-OXOTASK] section 2.2.2.2.14
335 PidLidTaskStatus Specifies the status of a task. PSETID_Task {00062003-0000-0000-C000-000000000046} PSETID_Task {00062003-0000-0000-C000-000000000046} 0x00008101 PtypInteger32, 0x0003 PtypInteger32 0x0003 Tasks [MS-OXOTASK] section 2.2.2.2.2
336 PidLidTaskStatusOnComplete Indicates whether the task assignee has been requested to send an email message update upon completion of the assigned task. PSETID_Task {00062003-0000-0000-C000-000000000046} PSETID_Task {00062003-0000-0000-C000-000000000046} 0x00008119 PtypBoolean, 0x000B PtypBoolean 0x000B Tasks [MS-OXOTASK] section 2.2.2.2.17
337 PidLidTaskUpdates Indicates whether the task assignee has been requested to send a task update when the assigned Task object changes. PSETID_Task {00062003-0000-0000-C000-000000000046} PSETID_Task {00062003-0000-0000-C000-000000000046} 0x0000811B PtypBoolean, 0x000B PtypBoolean 0x000B Tasks [MS-OXOTASK] section 2.2.2.2.19
338 PidLidTaskVersion Indicates which copy is the latest update of a Task object. PSETID_Task {00062003-0000-0000-C000-000000000046} PSETID_Task {00062003-0000-0000-C000-000000000046} 0x00008112 PtypInteger32, 0x0003 PtypInteger32 0x0003 Tasks [MS-OXOTASK] section 2.2.2.2.13
339 PidLidTeamTask This property is set by the client but is ignored by the server. PSETID_Task {00062003-0000-0000-C000-000000000046} PSETID_Task {00062003-0000-0000-C000-000000000046} 0x00008103 PtypBoolean, 0x000B PtypBoolean 0x000B Tasks [MS-OXOTASK] section 2.2.2.2.36
340 PidLidTimeZone Specifies information about the time zone of a recurring meeting. PSETID_Meeting {6ED8DA90-450B-101B-98DA-00AA003F1305} PSETID_Meeting {6ED8DA90-450B-101B-98DA-00AA003F1305} 0x0000000C http://schemas.microsoft.com/mapi/time_zone PtypInteger32, 0x0003 PtypInteger32 0x0003 Meetings [MS-OXOCAL] section 2.2.5.6
341 PidLidTimeZoneDescription Specifies a human-readable description of the time zone that is represented by the data in the PidLidTimeZoneStruct property (section 2.342). PSETID_Appointment {00062002-0000-0000-C000-000000000046} PSETID_Appointment {00062002-0000-0000-C000-000000000046} 0x00008234 http://schemas.microsoft.com/mapi/timezonedesc PtypString, 0x001F PtypString 0x001F Calendar [MS-OXOCAL] section 2.2.1.40
342 PidLidTimeZoneStruct Specifies time zone information for a recurring meeting. PSETID_Appointment {00062002-0000-0000-C000-000000000046} PSETID_Appointment {00062002-0000-0000-C000-000000000046} 0x00008233 http://schemas.microsoft.com/mapi/timezonestruct PtypBinary, 0x0102 PtypBinary 0x0102 Calendar [MS-OXOCAL] section 2.2.1.39
343 PidLidToAttendeesString Contains a list of all of the sendable attendees who are also required attendees. PSETID_Appointment {00062002-0000-0000-C000-000000000046} PSETID_Appointment {00062002-0000-0000-C000-000000000046} 0x0000823B PtypString, 0x001F PtypString 0x001F Meetings [MS-OXOCAL] section 2.2.1.17
344 PidLidToDoOrdinalDate Contains the current time, in UTC, which is used to determine the sort order of objects in a consolidated to-do list. PSETID_Common {00062008-0000-0000-C000-000000000046} PSETID_Common {00062008-0000-0000-C000-000000000046} 0x000085A0 PtypTime, 0x0040 PtypTime 0x0040 Tasks [MS-OXOFLAG] section 2.2.1.13
345 PidLidToDoSubOrdinal Contains the numerals 0 through 9 that are used to break a tie when the PidLidToDoOrdinalDate property (section 2.344) is used to perform a sort of objects. PSETID_Common {00062008-0000-0000-C000-000000000046} PSETID_Common {00062008-0000-0000-C000-000000000046} 0x000085A1 PtypString, 0x001F PtypString 0x001F Tasks [MS-OXOFLAG] section 2.2.1.14
346 PidLidToDoTitle Contains user-specifiable text to identify this Message object in a consolidated to-do list. PSETID_Common {00062008-0000-0000-C000-000000000046} PSETID_Common {00062008-0000-0000-C000-000000000046} 0x000085A4 PtypString, 0x001F PtypString 0x001F Tasks [MS-OXOFLAG] section 2.2.1.12
347 PidLidUseTnef Specifies whether Transport Neutral Encapsulation Format (TNEF) is to be included on a message when the message is converted from TNEF to MIME or SMTP format. PSETID_Common {00062008-0000-0000-C000-000000000046} PSETID_Common {00062008-0000-0000-C000-000000000046} 0x00008582 PtypBoolean, 0x000B PtypBoolean 0x000B Run-time configuration [MS-OXOMSG] section 2.2.1.66
348 PidLidValidFlagStringProof Contains the value of the PidTagMessageDeliveryTime property (section 2.791) when modifying the PidLidFlagRequest property (section 2.136). PSETID_Common {00062008-0000-0000-C000-000000000046} PSETID_Common {00062008-0000-0000-C000-000000000046} 0x000085BF PtypTime, 0x0040 PtypTime 0x0040 Tasks [MS-OXOFLAG] section 2.2.1.11
349 PidLidVerbResponse Specifies the voting option that a respondent has selected. PSETID_Common {00062008-0000-0000-C000-000000000046} PSETID_Common {00062008-0000-0000-C000-000000000046} 0x00008524 PtypString, 0x001F PtypString 0x001F General Message Properties [MS-OXOMSG] section 2.2.1.75
350 PidLidVerbStream Specifies what voting responses the user can make in response to the message. PSETID_Common {00062008-0000-0000-C000-000000000046} PSETID_Common {00062008-0000-0000-C000-000000000046} 0x00008520 PtypBinary, 0x0102 PtypBinary 0x0102 Run-time configuration [MS-OXOMSG] section 2.2.1.74
351 PidLidWeddingAnniversaryLocal Specifies the wedding anniversary of the contact, at midnight in the client’s local time zone, and is saved without any time zone conversions. PSETID_Address {00062004-0000-0000-C000-000000000046} PSETID_Address {00062004-0000-0000-C000-000000000046} 0x000080DF PtypTime, 0x0040 PtypTime 0x0040 Contact Properties [MS-OXOCNTC] section 2.2.1.5.5
352 PidLidWeekInterval Identifies the number of weeks that occur between each meeting. PSETID_Meeting {6ED8DA90-450B-101B-98DA-00AA003F1305} PSETID_Meeting {6ED8DA90-450B-101B-98DA-00AA003F1305} 0x00000012 http://schemas.microsoft.com/mapi/week_interval PtypInteger16, 0x0002 PtypInteger16 0x0002 Meetings [MS-XWDCAL] section 2.2.7.71
353 PidLidWhere Contains the value of the PidLidLocation property (section 2.159) from the associated Meeting object. PSETID_Meeting {6ED8DA90-450B-101B-98DA-00AA003F1305} PSETID_Meeting {6ED8DA90-450B-101B-98DA-00AA003F1305} 0x00000002 http://schemas.microsoft.com/mapi/where PtypString, 0x001F PtypString 0x001F Meetings [MS-OXOCAL] section 2.2.5.3
354 PidLidWorkAddress Specifies the complete address of the work address of the contact. PSETID_Address {00062004-0000-0000-C000-000000000046} PSETID_Address {00062004-0000-0000-C000-000000000046} 0x0000801B urn:schemas:contacts:workaddress PtypString, 0x001F PtypString 0x001F Contact Properties [MS-OXOCNTC] section 2.2.1.3.8
355 PidLidWorkAddressCity Specifies the city or locality portion of the work address of the contact. PSETID_Address {00062004-0000-0000-C000-000000000046} PSETID_Address {00062004-0000-0000-C000-000000000046} 0x00008046 urn:schemas:contacts:l PtypString, 0x001F PtypString 0x001F Contact Properties [MS-OXOCNTC] section 2.2.1.3.2
356 PidLidWorkAddressCountry Specifies the country or region portion of the work address of the contact. PSETID_Address {00062004-0000-0000-C000-000000000046} PSETID_Address {00062004-0000-0000-C000-000000000046} 0x00008049 urn:schemas:contacts:co PtypString, 0x001F PtypString 0x001F Contact Properties [MS-OXOCNTC] section 2.2.1.3.5
357 PidLidWorkAddressCountryCode Specifies the country code portion of the work address of the contact. PSETID_Address {00062004-0000-0000-C000-000000000046} PSETID_Address {00062004-0000-0000-C000-000000000046} 0x000080DB PtypString, 0x001F PtypString 0x001F Contact Properties [MS-OXOCNTC] section 2.2.1.3.6
358 PidLidWorkAddressPostalCode Specifies the postal code (ZIP code) portion of the work address of the contact. PSETID_Address {00062004-0000-0000-C000-000000000046} PSETID_Address {00062004-0000-0000-C000-000000000046} 0x00008048 urn:schemas:contacts:postalcode PtypString, 0x001F PtypString 0x001F Contact Properties [MS-OXOCNTC] section 2.2.1.3.4
359 PidLidWorkAddressPostOfficeBox Specifies the post office box portion of the work address of the contact. PSETID_Address {00062004-0000-0000-C000-000000000046} PSETID_Address {00062004-0000-0000-C000-000000000046} 0x0000804A urn:schemas:contacts:postofficebox PtypString, 0x001F PtypString 0x001F Contact Properties [MS-OXOCNTC] section 2.2.1.3.7
360 PidLidWorkAddressState Specifies the state or province portion of the work address of the contact. PSETID_Address {00062004-0000-0000-C000-000000000046} PSETID_Address {00062004-0000-0000-C000-000000000046} 0x00008047 urn:schemas:contacts:st PtypString, 0x001F PtypString 0x001F Contact Properties [MS-OXOCNTC] section 2.2.1.3.3
361 PidLidWorkAddressStreet Specifies the street portion of the work address of the contact. PSETID_Address {00062004-0000-0000-C000-000000000046} PSETID_Address {00062004-0000-0000-C000-000000000046} 0x00008045 urn:schemas:contacts:street PtypString, 0x001F PtypString 0x001F Contact Properties [MS-OXOCNTC] section 2.2.1.3.1
362 PidLidYearInterval Indicates the yearly interval of the appointment or meeting. PSETID_Meeting {6ED8DA90-450B-101B-98DA-00AA003F1305} PSETID_Meeting {6ED8DA90-450B-101B-98DA-00AA003F1305} 0x00000014 http://schemas.microsoft.com/mapi/year_interval PtypInteger16, 0x0002 PtypInteger16 0x0002 Meetings [MS-XWDCAL] section 2.2.7.73
363 PidLidYomiCompanyName Specifies the phonetic pronunciation of the company name of the contact. PSETID_Address {00062004-0000-0000-C000-000000000046} PSETID_Address {00062004-0000-0000-C000-000000000046} 0x0000802E http://schemas.microsoft.com/exchange/yomiorganization PtypString, 0x001F PtypString 0x001F Contact Properties [MS-OXOCNTC] section 2.2.1.6.8
364 PidLidYomiFirstName Specifies the phonetic pronunciation of the given name of the contact. PSETID_Address {00062004-0000-0000-C000-000000000046} PSETID_Address {00062004-0000-0000-C000-000000000046} 0x0000802C http://schemas.microsoft.com/exchange/yomifirstname PtypString, 0x001F PtypString 0x001F Contact Properties [MS-OXOCNTC] section 2.2.1.1.9
365 PidLidYomiLastName Specifies the phonetic pronunciation of the surname of the contact. PSETID_Address {00062004-0000-0000-C000-000000000046} PSETID_Address {00062004-0000-0000-C000-000000000046} 0x0000802D http://schemas.microsoft.com/exchange/yomilastname PtypString, 0x001F PtypString 0x001F Contact Properties [MS-OXOCNTC] section 2.2.1.1.10
366 PidNameAcceptLanguage Contains the value of the MIME Accept-Language header. PS_INTERNET_HEADERS {00020386-0000-0000-C000-000000000046} PS_INTERNET_HEADERS {00020386-0000-0000-C000-000000000046} PtypString, 0x001F PtypString 0x001F Email [MS-OXCMSG] section 2.2.1.42
367 PidNameApplicationName Specifies the application used to open the file attached to the Document object. PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PtypString, 0x001F PtypString 0x001F Common [MS-OXODOC] section 2.2.1.9
368 PidNameAttachmentMacContentType Contains the Content-Type of the Mac attachment. PSETID_Attachment {96357F7F-59E1-47D0-99A7-46515C183B54} PSETID_Attachment {96357F7F-59E1-47D0-99A7-46515C183B54} PtypString, 0x001F PtypString 0x001F Message Attachment Properties [MS-OXCMSG] section 2.2.2.29
369 PidNameAttachmentMacInfo Contains the headers and resource fork data associated with the Mac attachment. PSETID_Attachment {96357F7F-59E1-47D0-99A7-46515C183B54} PSETID_Attachment {96357F7F-59E1-47D0-99A7-46515C183B54} PtypBinary, 0x0102 PtypBinary 0x0102 Message Attachment Properties [MS-OXCMSG] section 2.2.2.29
370 PidNameAttachmentOriginalPermissionType Contains the original permission type data associated with a web reference attachment. PSETID_Attachment {96357F7F-59E1-47D0-99A7-46515C183B54} PSETID_Attachment {96357F7F-59E1-47D0-99A7-46515C183B54} PtypInteger32, 0x0003 PtypInteger32 0x0003 Message Attachment Properties [MS-OXCMSG] section 2.2.2.27
371 PidNameAttachmentPermissionType Contains the permission type data associated with a web reference attachment. PSETID_Attachment {96357F7F-59E1-47D0-99A7-46515C183B54} PSETID_Attachment {96357F7F-59E1-47D0-99A7-46515C183B54} PtypInteger32, 0x0003 PtypInteger32 0x0003 Message Attachment Properties [MS-OXCMSG] section 2.2.2.28
372 PidNameAttachmentProviderType Contains the provider type data associated with a web reference attachment. PSETID_Attachment {96357F7F-59E1-47D0-99A7-46515C183B54} PSETID_Attachment {96357F7F-59E1-47D0-99A7-46515C183B54} PtypeString, 0x001F PtypeString 0x001F Message Attachment Properties [MS-OXCMSG] section 2.2.2.26
373 PidNameAudioNotes Contains textual annotations to a voice message after it has been delivered to the user’s mailbox. PSETID_UnifiedMessaging {4442858E-A9E3-4E80-B900-317A210CC15B} PSETID_UnifiedMessaging {4442858E-A9E3-4E80-B900-317A210CC15B} PtypString, 0x001F PtypString 0x001F Unified Messaging [MS-OXOUM] section 2.2.5.15
374 PidNameAuthor Specifies the author of the file attached to the Document object. PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PtypString, 0x001F PtypString 0x001F Common [MS-OXODOC] section 2.2.1.3
375 PidNameAutomaticSpeechRecognitionData Contains an unprotected voice message. PSETID_UnifiedMessaging {4442858E-A9E3-4E80-B900-317A210CC15B} PSETID_UnifiedMessaging {4442858E-A9E3-4E80-B900-317A210CC15B} PtypBinary, 0x0102 PtypBinary 0x0102 Unified Messaging [MS-OXOUM] section 2.2.5.13
376 PidNameBirthdayContactAttributionDisplayName Indicates the name of the contact associated with the birthday event. PSETID_Address{00062004-0000-0000-C000-000000000046} PtypString, 0x001F PtypString 0x001F Contact Properties [MS-OXOCAL] section 2.2.1.52
377 PidNameBirthdayContactEntryId Indicate the EntryID of the contact associated with the birthday event. PSETID_Address{00062004-0000-0000-C000-000000000046} PtypBinary, 0x0102 PtypBinary 0x0102 Contact Properties [MS-OXOCAL] section 2.2.1.53
378 PidNameBirthdayContactPersonGuid Indicates the person ID’s GUID of the contact associated with the birthday event. PSETID_Address{00062004-0000-0000-C000-000000000046} PtypBinary, 0x0102 PtypBinary 0x0102 Contact Properties [MS-OXOCAL] section 2.2.1.54
379 PidNameByteCount Specifies the size, in bytes, of the file attached to the Document object. PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PtypInteger32, 0x0003 PtypInteger32 0x0003 Common [MS-OXODOC] section 2.2.1.22
380 PidNameCalendarAttendeeRole Specifies the role of the attendee. PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PtypInteger32, 0x0003 PtypInteger32 0x0003 Common [MS-XWDCAL] section 2.2.2.7
381 PidNameCalendarBusystatus Specifies whether the attendee is busy at the time of an appointment on their calendar. PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PtypString, 0x001F PtypString 0x001F Common [MS-XWDCAL] section 2.2.2.8
382 PidNameCalendarContact Identifies the name of a contact who is an attendee of a meeting. PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PtypString, 0x001F PtypString 0x001F Common [MS-XWDCAL] section 2.2.2.9
383 PidNameCalendarContactUrl Identifies the URL where you can access contact information in HTML format. PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PtypString, 0x001F PtypString 0x001F Common [MS-XWDCAL] section 2.2.2.10
384 PidNameCalendarCreated Identifies the date and time, in UTC, when the organizer created the appointment or meeting. PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PtypTime, 0x0040 PtypTime 0x0040 Common [MS-XWDCAL] section 2.2.2.11
385 PidNameCalendarDescriptionUrl Specifies the URL of a resource that contains a description of an appointment or meeting. PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PtypString, 0x001F PtypString 0x001F Common [MS-XWDCAL] section 2.2.2.12
386 PidNameCalendarDuration Identifies the duration, in seconds, of an appointment or meeting. PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PtypInteger32, 0x0003 PtypInteger32 0x0003 Common [MS-XWDCAL] section 2.2.2.13
387 PidNameCalendarExceptionDate Identifies a list of dates that are exceptions to a recurring appointment. PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PtypMultipleTime, 0x1040 PtypMultipleTime 0x1040 Common [MS-XWDCAL] section 2.2.2.14
388 PidNameCalendarExceptionRule Specifies an exception rule for a recurring appointment. PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PtypMultipleString, 0x101F PtypMultipleString 0x101F Common [MS-XWDCAL] section 2.2.2.15
389 PidNameCalendarGeoLatitude Specifies the geographical latitude of the location of an appointment. PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PtypFloating64, 0x0005 PtypFloating64 0x0005 Common [MS-XWDCAL] section 2.2.2.16
390 PidNameCalendarGeoLongitude Specifies the geographical longitude of the location of an appointment. PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PtypFloating64, 0x0005 PtypFloating64 0x0005 Common [MS-XWDCAL] section 2.2.2.17
391 PidNameCalendarInstanceType Specifies the type of an appointment. PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PtypInteger32, 0x0003 PtypInteger32 0x0003 Common [MS-XWDCAL] section 2.2.2.18
392 PidNameCalendarIsOrganizer Specifies whether an attendee is the organizer of an appointment or meeting. PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PtypBoolean, 0x000B PtypBoolean 0x000B Common [MS-XWDCAL] section 2.2.2.19
393 PidNameCalendarLastModified Specifies the date and time, in UTC, when an appointment was last modified. PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PtypTime, 0x0040 PtypTime 0x0040 Common [MS-XWDCAL] section 2.2.2.20
394 PidNameCalendarLocationUrl Specifies a URL with location information in HTML format. PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PtypString, 0x001F PtypString 0x001F Common [MS-XWDCAL] section 2.2.2.21
395 PidNameCalendarMeetingStatus Specifies the status of an appointment or meeting. PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PtypString, 0x001F PtypString 0x001F Common [MS-XWDCAL] section 2.2.2.22
396 PidNameCalendarMethod Specifies the iCalendar method that is associated with an Appointment object. PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PtypString, 0x001F PtypString 0x001F Common [MS-XWDCAL] section 2.2.2.23
397 PidNameCalendarProductId Identifies the product that created the iCalendar-formatted stream. PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PtypString, 0x001F PtypString 0x001F Common [MS-XWDCAL] section 2.2.2.24
398 PidNameCalendarRecurrenceIdRange Specifies which instances of a recurring appointment are being referred to. PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PtypString, 0x001F PtypString 0x001F Common [MS-XWDCAL] section 2.2.2.25
399 PidNameCalendarReminderOffset Identifies the number of seconds before an appointment starts that a reminder is to be displayed. PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PtypInteger32, 0x0003 PtypInteger32 0x0003 Common [MS-XWDCAL] section 2.2.2.26
400 PidNameCalendarResources Identifies a list of resources, such as rooms and video equipment, that are available for an appointment. PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PtypString, 0x001F PtypString 0x001F Common [MS-XWDCAL] section 2.2.2.27
401 PidNameCalendarRsvp Specifies whether the organizer of an appointment or meeting requested a response. PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PtypBoolean, 0x000B PtypBoolean 0x000B Common [MS-XWDCAL] section 2.2.2.28
402 PidNameCalendarSequence Specifies the sequence number of a version of an appointment. PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PtypInteger32, 0x0003 PtypInteger32 0x0003 Common [MS-XWDCAL] section 2.2.2.29
403 PidNameCalendarTimeZone Specifies the time zone of an appointment or meeting. PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PtypString, 0x001F PtypString 0x001F Common [MS-XWDCAL] section 2.2.2.30
404 PidNameCalendarTimeZoneId Specifies the time zone identifier of an appointment or meeting. PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PtypInteger32, 0x0003 PtypInteger32 0x0003 Common [MS-XWDCAL] section 2.2.2.31
405 PidNameCalendarTransparent Specifies whether an appointment or meeting is visible to busy time searches. PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PtypString, 0x001F PtypString 0x001F Common [MS-XWDCAL] section 2.2.2.32
406 PidNameCalendarUid Specifies the unique identifier of an appointment or meeting. PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PtypString, 0x001F PtypString 0x001F Common [MS-XWDCAL] section 2.2.2.33
407 PidNameCalendarVersion Identifies the version of the iCalendar specification, as specified in [MS-OXCICAL] section 2.1.3.1.1.3, that is required to correctly interpret an iCalendar object. PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PtypString, 0x001F PtypString 0x001F Common [MS-XWDCAL] section 2.2.2.34
408 PidNameCategory Specifies the category of the file attached to the Document object. PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PtypString, 0x001F PtypString 0x001F Common [MS-OXODOC] section 2.2.1.18
409 PidNameCharacterCount Specifies the character count of the file attached to the Document object. PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PtypInteger32, 0x0003 PtypInteger32 0x0003 Common [MS-OXODOC] section 2.2.1.16
410 PidNameComments Specifies the comments of the file attached to the Document object. PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PtypString, 0x001F PtypString 0x001F Common [MS-OXODOC] section 2.2.1.5
411 PidNameCompany Specifies the company for which the file was created. PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PtypString, 0x001F PtypString 0x001F Common [MS-OXODOC] section 2.2.1.21
412 PidNameContentBase Specifies the value of the MIME Content-Base header, which defines the base URI for resolving relative URLs contained within the message body. PS_INTERNET_HEADERS {00020386-0000-0000-C000-000000000046} PS_INTERNET_HEADERS {00020386-0000-0000-C000-000000000046} PtypString, 0x001F PtypString 0x001F Email [MS-OXCMSG] section 2.2.1.41
413 PidNameContentClass Contains a string that identifies the type of content of a Message object. PS_INTERNET_HEADERS {00020386-0000-0000-C000-000000000046} PS_INTERNET_HEADERS {00020386-0000-0000-C000-000000000046} PtypString, 0x001F PtypString 0x001F Email [MS-OXCMSG] section 2.2.1.48
414 PidNameContentType Specifies the type of the body part content. PS_INTERNET_HEADERS {00020386-0000-0000-C000-000000000046} PS_INTERNET_HEADERS {00020386-0000-0000-C000-000000000046} PtypString, 0x001F PtypString 0x001F Email [MS-OXCMSG] section 2.2.1.50
415 PidNameCreateDateTimeReadOnly Specifies the time, in UTC, that the file was first created. PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PtypTime, 0x0040 PtypTime 0x0040 Common [MS-OXODOC] section 2.2.1.12
416 PidNameCrossReference Contains the name of the host (with domains omitted) and a white-space-separated list of colon-separated pairs of newsgroup names and message numbers. PS_INTERNET_HEADERS {00020386-0000-0000-C000-000000000046} PS_INTERNET_HEADERS {00020386-0000-0000-C000-000000000046} PtypString, 0x001F PtypString 0x001F Email [MS-OXCMAIL] section 2.5.3
417 PidNameDavId Specifies a unique ID for the calendar item. PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PtypString, 0x001F PtypString 0x001F Common [MS-XWDCAL] section 2.2.1.2
418 PidNameDavIsCollection Indicates whether a Calendar object is a collection. PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PtypBoolean, 0x000B PtypBoolean 0x000B Common [MS-XWDCAL] section 2.2.1.3
419 PidNameDavIsStructuredDocument Indicates whether a Calendar object is a structured document. PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PtypBoolean, 0x000B PtypBoolean 0x000B Common [MS-XWDCAL] section 2.2.1.4
420 PidNameDavParentName Specifies the name of the Folder object that contains the Calendar object. PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PtypString, 0x001F PtypString 0x001F Common [MS-XWDCAL] section 2.2.1.5
421 PidNameDavUid Specifies the unique identifier for an item. PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PtypString, 0x001F PtypString 0x001F Common [MS-XWDCAL] section 2.2.1.6
422 PidNameDocumentParts Specifies the title of each part of the document. PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PtypMultipleString, 0x101F PtypMultipleString 0x101F Common [MS-OXODOC] section 2.2.1.29
423 PidNameEditTime Specifies the time that the file was last edited. PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PtypString, 0x001F PtypString 0x001F Common [MS-OXODOC] section 2.2.1.10
424 PidNameExchangeIntendedBusyStatus Specifies the intended free/busy status of a meeting in a Meeting request. PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PtypString, 0x001F PtypString 0x001F Common [MS-XWDCAL] section 2.2.8.1
425 PidNameExchangeJunkEmailMoveStamp Indicates that the message is not to be processed by a spam filter. PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PtypInteger32, 0x0003 PtypInteger32 0x0003 Secure Messaging Properties [MS-OXCSPAM] section 2.2.1.2
426 PidNameExchangeModifyExceptionStructure Specifies a structure that modifies an exception to the recurrence. PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PtypBinary, 0x0102 PtypBinary 0x0102 Common [MS-XWDCAL] section 2.2.8.2
427 PidNameExchangeNoModifyExceptions Indicates whether exceptions to a recurring appointment can be modified. PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PtypBoolean, 0x000B PtypBoolean 0x000B Common [MS-XWDCAL] section 2.2.8.3
428 PidNameExchangePatternEnd Identifies the maximum time when an instance of a recurring appointment ends. PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PtypTime, 0x0040 PtypTime 0x0040 Common [MS-XWDCAL] section 2.2.8.4
429 PidNameExchangePatternStart Identifies the absolute minimum time when an instance of a recurring appointment starts. PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PtypTime, 0x0040 PtypTime 0x0040 Common [MS-XWDCAL] section 2.2.8.5
430 PidNameExchangeReminderInterval Identifies the time, in seconds, between reminders. PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PtypInteger32, 0x0003 PtypInteger32 0x0003 Common [MS-XWDCAL] section 2.2.8.6
431 PidNameExchDatabaseSchema Specifies an array of URLs that identifies other folders within the same message store that contain schema definition items. PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PtypMultipleString, 0x101F PtypMultipleString 0x101F Common [MS-XWDCAL] section 2.2.5.1
432 PidNameExchDataExpectedContentClass Specifies an array of names that indicates the expected content classes of items within a folder. PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PtypMultipleString, 0x101F PtypMultipleString 0x101F Common [MS-XWDCAL] section 2.2.5.2
433 PidNameExchDataSchemaCollectionReference Specifies an array of names that indicates the expected content classes of items within a folder. PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PtypString, 0x001F PtypString 0x001F Common [MS-XWDCAL] section 2.2.5.3
434 PidNameExtractedAddresses Contains an XML document with a single AddressSet element. PSETID_XmlExtractedEntities {23239608-685D-4732-9C55-4C95CB4E8E33} PSETID_XmlExtractedEntities {23239608-685D-4732-9C55-4C95CB4E8E33} PtypString, 0x001F PtypString 0x001F Extracted Entities [MS-OXCEXT] section 2.2.2.1
435 PidNameExtractedContacts Contains an XML document with a single ContactSet element. PSETID_XmlExtractedEntities {23239608-685D-4732-9C55-4C95CB4E8E33} PSETID_XmlExtractedEntities {23239608-685D-4732-9C55-4C95CB4E8E33} PtypString, 0x001F PtypString 0x001F Extracted Entities [MS-OXCEXT] section 2.2.2.2
436 PidNameExtractedEmails Contains an XML document with a single EmailSet element. PSETID_XmlExtractedEntities {23239608-685D-4732-9C55-4C95CB4E8E33} PSETID_XmlExtractedEntities {23239608-685D-4732-9C55-4C95CB4E8E33} PtypString, 0x001F PtypString 0x001F Extracted Entities [MS-OXCEXT] section 2.2.2.3
437 PidNameExtractedMeetings Contains an XML document with a single MeetingSet element. PSETID_XmlExtractedEntities {23239608-685D-4732-9C55-4C95CB4E8E33} PSETID_XmlExtractedEntities {23239608-685D-4732-9C55-4C95CB4E8E33} PtypString, 0x001F PtypString 0x001F Extracted Entities [MS-OXCEXT] section 2.2.2.4
438 PidNameExtractedPhones Contains an XML document with a single PhoneSet element. PSETID_XmlExtractedEntities {23239608-685D-4732-9C55-4C95CB4E8E33} PSETID_XmlExtractedEntities {23239608-685D-4732-9C55-4C95CB4E8E33} PtypString, 0x001F PtypString 0x001F Extracted Entities [MS-OXCEXT] section 2.2.2.5
439 PidNameExtractedTasks Contains an XML document with a single TaskSet element. PSETID_XmlExtractedEntities {23239608-685D-4732-9C55-4C95CB4E8E33} PSETID_XmlExtractedEntities {23239608-685D-4732-9C55-4C95CB4E8E33} PtypString, 0x001F PtypString 0x001F Extracted Entities [MS-OXCEXT] section 2.2.2.6
440 PidNameExtractedUrls Contains an XML document with a single UrlSet element. PSETID_XmlExtractedEntities {23239608-685D-4732-9C55-4C95CB4E8E33} PSETID_XmlExtractedEntities {23239608-685D-4732-9C55-4C95CB4E8E33} PtypString, 0x001F PtypString 0x001F Extracted Entities [MS-OXCEXT] section 2.2.2.7
441 PidNameFrom Specifies the SMTP email alias of the organizer of an appointment or meeting. PS_INTERNET_HEADERS {00020386-0000-0000-C000-000000000046} PS_INTERNET_HEADERS {00020386-0000-0000-C000-000000000046} PtypString, 0x001F PtypString 0x001F Email [MS-XWDCAL] section 2.2.2.35
442 PidNameHeadingPairs Specifies which group of headings are indented in the document. PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PtypBinary, 0x0102 PtypBinary 0x0102 Common [MS-OXODOC] section 2.2.1.30
443 PidNameHiddenCount Specifies the hidden value of the file attached to the Document object. PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PtypInteger32, 0x0003 PtypInteger32 0x0003 Common [MS-OXODOC] section 2.2.1.27
444 PidNameHttpmailCalendar Specifies the URL for the Calendar folder for a particular user. PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PtypString, 0x001F PtypString 0x001F Common [MS-XWDCAL] section 2.2.3.1
445 PidNameHttpmailHtmlDescription Specifies the HTML content of the message. PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PtypString, 0x001F PtypString 0x001F Common [MS-XWDCAL] section 2.2.3.2
446 PidNameHttpmailSendMessage Specifies the email submission URI to which outgoing email is submitted. PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PtypString, 0x001F PtypString 0x001F Common [MS-XWDCAL] section 2.2.3.3
447 PidNameICalendarRecurrenceDate Identifies an array of instances of a recurring appointment. PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PtypMultipleTime, 0x1040 PtypMultipleTime 0x1040 Common [MS-XWDCAL] section 2.2.2.36
448 PidNameICalendarRecurrenceRule Specifies the rule for the pattern that defines a recurring appointment. PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PtypMultipleString, 0x101F PtypMultipleString 0x101F Common [MS-XWDCAL] section 2.2.2.37
449 PidNameInternetSubject Specifies the subject of the message. PS_INTERNET_HEADERS {00020386-0000-0000-C000-000000000046} PS_INTERNET_HEADERS {00020386-0000-0000-C000-000000000046} PtypString, 0x001F PtypString 0x001F Email [MS-XWDCAL] section 2.2.4.1
450 PidNameIsBirthdayContactWritable Indicates whether the contact associated with the birthday event is writable. PSETID_Address{00062004-0000-0000-C000-000000000046} PtypBoolean, 0x000B PtypBoolean 0x000B Contact Properties [MS-OXOCAL] section 2.2.1.55
451 PidNameKeywords Contains keywords or categories for the Message object. PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PtypMultipleString, 0x101F PtypMultipleString 0x101F General Message Properties [MS-OXCMSG] section 2.2.1.17
452 PidNameLastAuthor Specifies the most recent author of the file attached to the Document object. PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PtypString, 0x001F PtypString 0x001F Common [MS-OXODOC] section 2.2.1.7
453 PidNameLastPrinted Specifies the time, in UTC, that the file was last printed. PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PtypTime, 0x0040 PtypTime 0x0040 Common [MS-OXODOC] section 2.2.1.11
454 PidNameLastSaveDateTime Specifies the time, in UTC, that the file was last saved. PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PtypTime, 0x0040 PtypTime 0x0040 Common [MS-OXODOC] section 2.2.1.13
455 PidNameLineCount Specifies the number of lines in the file attached to the Document object. PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PtypInteger32, 0x0003 PtypInteger32 0x0003 Common [MS-OXODOC] section 2.2.1.23
456 PidNameLinksDirty Indicates whether the links in the document are up-to-date. PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PtypBoolean, 0x000B PtypBoolean 0x000B Common [MS-OXODOC] section 2.2.1.31
457 PidNameLocationUrl PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PtypString, 0x001F PtypString 0x001F Calendar
458 PidNameManager Specifies the manager of the file attached to the Document object. PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PtypString, 0x001F PtypString 0x001F Common [MS-OXODOC] section 2.2.1.20
459 PidNameMeetingDoNotForward Specifies whether to allow the meeting to be forwarded. PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PtypBoolean, 0x000B PtypBoolean 0x000B Meetings [MS-OXOCAL] section 2.2.1.51
460 PidNameMSIPLabels Contains the string that specifies the CLP label information. PS_INTERNET_HEADERS {00020386-0000-0000-C000-000000000046} PS_INTERNET_HEADERS {00020386-0000-0000-C000-000000000046} PtypString, 0x001F PtypString 0x001F Email [MS-OXCMSG] section 2.2.1.56
461 PidNameMultimediaClipCount Specifies the number of multimedia clips in the file attached to the Document object. PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PtypInteger32, 0x0003 PtypInteger32 0x0003 Common [MS-OXODOC] section 2.2.1.28
462 PidNameNoteCount Specifies the number of notes in the file attached to the Document object. PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PtypInteger32, 0x0003 PtypInteger32 0x0003 Common [MS-OXODOC] section 2.2.1.26
463 PidNameOMSAccountGuid Contains the GUID of the SMS account used to deliver the message. PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PtypString, 0x001F PtypString 0x001F SMS [MS-OXOSMMS] section 2.2.1.1
464 PidNameOMSMobileModel Indicates the model of the mobile device used to send the SMS or MMS message. PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PtypString, 0x001F PtypString 0x001F SMS [MS-OXOSMMS] section 2.2.1.6
465 PidNameOMSScheduleTime Contains the time, in UTC, at which the client requested that the service provider send the SMS or MMS message. PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PtypTime, 0x0040 PtypTime 0x0040 SMS [MS-OXOSMMS] section 2.2.1.2
466 PidNameOMSServiceType Contains the type of service used to send an SMS or MMS message. PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PtypInteger32, 0x0003 PtypInteger32 0x0003 SMS [MS-OXOSMMS] section 2.2.1.3
467 PidNameOMSSourceType Contains the source of an SMS or MMS message. PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PtypInteger32, 0x0003 PtypInteger32 0x0003 SMS [MS-OXOSMMS] section 2.2.1.4
468 PidNamePageCount Specifies the page count of the file attached to the Document object. PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PtypInteger32, 0x0003 PtypInteger32 0x0003 Common [MS-OXODOC] section 2.2.1.14
469 PidNameParagraphCount Specifies the number of paragraphs in the file attached to the Document object. PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PtypInteger32, 0x0003 PtypInteger32 0x0003 Common [MS-OXODOC] section 2.2.1.24
470 PidNamePhishingStamp Indicates whether a message is likely to be phishing. PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PtypInteger32, 0x0003 PtypInteger32 0x0003 Secure Messaging Properties [MS-OXPHISH] section 2.2.1.1
471 PidNamePresentationFormat Specifies the presentation format of the file attached to the Document object. PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PtypString, 0x001F PtypString 0x001F Common [MS-OXODOC] section 2.2.1.19
472 PidNameQuarantineOriginalSender Specifies the original sender of a message. PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PtypString, 0x001F PtypString 0x001F Common [MS-OXCMAIL] section 2.5.4
473 PidNameRevisionNumber Specifies the revision number of the file attached to the Document object. PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PtypString, 0x001F PtypString 0x001F Common [MS-OXODOC] section 2.2.1.8
474 PidNameRightsManagementLicense Specifies the value used to cache the Use License for the rights-managed email message. PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PtypMultipleBinary, 0x1102 PtypMultipleBinary 0x1102 Secure Messaging Properties [MS-OXORMMS] section 2.2.1.1
475 PidNameScale Indicates whether the image is to be scaled or cropped. PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PtypBoolean, 0x000B PtypBoolean 0x000B Common [MS-OXODOC] section 2.2.1.32
476 PidNameSecurity Specifies the security level of the file attached to the Document object. PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PtypInteger32, 0x0003 PtypInteger32 0x0003 Common [MS-OXODOC] section 2.2.1.17
477 PidNameSlideCount Specifies the number of slides in the file attached to the Document object. PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PtypInteger32, 0x0003 PtypInteger32 0x0003 Common [MS-OXODOC] section 2.2.1.25
478 PidNameSubject Specifies the subject of the file attached to the Document object. PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PtypString, 0x001F PtypString 0x001F Common [MS-OXODOC] section 2.2.1.2
479 PidNameTemplate Specifies the template of the file attached to the Document object. PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PtypString, 0x001F PtypString 0x001F Common [MS-OXODOC] section 2.2.1.6
480 PidNameThumbnail Specifies the data representing the thumbnail image of the document. PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PtypBinary, 0x0102 PtypBinary 0x0102 Common [MS-OXODOC] section 2.2.1.33
481 PidNameTitle Specifies the title of the file attached to the Document object. PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PtypString, 0x001F PtypString 0x001F Common [MS-OXODOC] section 2.2.1.1
482 PidNameWordCount Specifies the word count of the file attached to the Document object. PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PS_PUBLIC_STRINGS {00020329-0000-0000-C000-000000000046} PtypInteger32, 0x0003 PtypInteger32 0x0003 Common [MS-OXODOC] section 2.2.1.15
483 PidNameXCallId Contains a unique identifier associated with the phone call. PS_INTERNET_HEADERS {00020386-0000-0000-C000-000000000046} PS_INTERNET_HEADERS {00020386-0000-0000-C000-000000000046} PtypString, 0x001F PtypString 0x001F Unified Messaging [MS-OXOUM] section 2.2.5.12
484 PidNameXFaxNumberOfPages Specifies how many discrete pages are contained within an attachment representing a facsimile message. PS_INTERNET_HEADERS {00020386-0000-0000-C000-000000000046} PS_INTERNET_HEADERS {00020386-0000-0000-C000-000000000046} PtypInteger16, 0x0002 PtypInteger16 0x0002 Unified Messaging [MS-OXOUM] section 2.2.5.8
485 PidNameXRequireProtectedPlayOnPhone Indicates that the client only renders the message on a phone. PS_INTERNET_HEADERS {00020386-0000-0000-C000-000000000046} PS_INTERNET_HEADERS {00020386-0000-0000-C000-000000000046} PtypBoolean, 0x000B PtypBoolean 0x000B Unified Messaging [MS-OXOUM] section 2.2.5.14
486 PidNameXSenderTelephoneNumber Contains the telephone number of the caller associated with a voice mail message. PS_INTERNET_HEADERS {00020386-0000-0000-C000-000000000046} PS_INTERNET_HEADERS {00020386-0000-0000-C000-000000000046} PtypString, 0x001F PtypString 0x001F Unified Messaging [MS-OXOUM] section 2.2.5.2
487 PidNameXSharingBrowseUrl Contains a value that is ignored by the server no matter what value is generated by the client. PS_INTERNET_HEADERS {00020386-0000-0000-C000-000000000046} PS_INTERNET_HEADERS {00020386-0000-0000-C000-000000000046} PtypString, 0x001F PtypString 0x001F Sharing [MS-OXSHARE] section 2.2.6
488 PidNameXSharingCapabilities Contains a string representation of the value of the PidLidSharingCapabilities property (section 2.237). PS_INTERNET_HEADERS {00020386-0000-0000-C000-000000000046} PS_INTERNET_HEADERS {00020386-0000-0000-C000-000000000046} PtypString, 0x001F PtypString 0x001F Sharing [MS-OXSHARE] section 2.2.2.2
489 PidNameXSharingConfigUrl Contains the same value as the PidLidSharingConfigurationUrl property (section 2.238). PS_INTERNET_HEADERS {00020386-0000-0000-C000-000000000046} PS_INTERNET_HEADERS {00020386-0000-0000-C000-000000000046} PtypString, 0x001F PtypString 0x001F Sharing [MS-OXSHARE] section 2.2.2.4
490 PidNameXSharingExendedCaps Contains a value that is ignored by the server no matter what value is generated by the client. PS_INTERNET_HEADERS {00020386-0000-0000-C000-000000000046} PS_INTERNET_HEADERS {00020386-0000-0000-C000-000000000046} PtypString, 0x001F PtypString 0x001F Sharing [MS-OXSHARE] section 2.2.6
491 PidNameXSharingFlavor Contains a hexadecimal string representation of the value of the PidLidSharingFlavor property (section 2.245). PS_INTERNET_HEADERS {00020386-0000-0000-C000-000000000046} PS_INTERNET_HEADERS {00020386-0000-0000-C000-000000000046} PtypString, 0x001F PtypString 0x001F Sharing [MS-OXSHARE] section 2.2.2.6
492 PidNameXSharingInstanceGuid Contains a value that is ignored by the server no matter what value is generated by the client. PS_INTERNET_HEADERS {00020386-0000-0000-C000-000000000046} PS_INTERNET_HEADERS {00020386-0000-0000-C000-000000000046} PtypString, 0x001F PtypString 0x001F Sharing [MS-OXSHARE] section 2.2.6
493 PidNameXSharingLocalType Contains the same value as the PidLidSharingLocalType property (section 2.259). PS_INTERNET_HEADERS {00020386-0000-0000-C000-000000000046} PS_INTERNET_HEADERS {00020386-0000-0000-C000-000000000046} PtypString, 0x001F PtypString 0x001F Sharing [MS-OXSHARE] section 2.2.2.11
494 PidNameXSharingProviderGuid Contains the hexadecimal string representation of the value of the PidLidSharingProviderGuid property (section 2.266). PS_INTERNET_HEADERS {00020386-0000-0000-C000-000000000046} PS_INTERNET_HEADERS {00020386-0000-0000-C000-000000000046} PtypString, 0x001F PtypString 0x001F Sharing [MS-OXSHARE] section 2.2.2.13
495 PidNameXSharingProviderName Contains the same value as the PidLidSharingProviderName property (section 2.267). PS_INTERNET_HEADERS {00020386-0000-0000-C000-000000000046} PS_INTERNET_HEADERS {00020386-0000-0000-C000-000000000046} PtypString, 0x001F PtypString 0x001F Sharing [MS-OXSHARE] section 2.2.2.15
496 PidNameXSharingProviderUrl Contains the same value as the PidLidSharingProviderUrl property (section 2.268). PS_INTERNET_HEADERS {00020386-0000-0000-C000-000000000046} PS_INTERNET_HEADERS {00020386-0000-0000-C000-000000000046} PtypString, 0x001F PtypString 0x001F Sharing [MS-OXSHARE] section 2.2.2.17
497 PidNameXSharingRemoteName Contains the same value as the PidLidSharingRemoteName property (section 2.277). PS_INTERNET_HEADERS {00020386-0000-0000-C000-000000000046} PS_INTERNET_HEADERS {00020386-0000-0000-C000-000000000046} PtypString, 0x001F PtypString 0x001F Sharing [MS-OXSHARE] section 2.2.3.2
498 PidNameXSharingRemotePath Contains a value that is ignored by the server no matter what value is generated by the client. PS_INTERNET_HEADERS {00020386-0000-0000-C000-000000000046} PS_INTERNET_HEADERS {00020386-0000-0000-C000-000000000046} PtypString, 0x001F PtypString 0x001F Sharing [MS-OXSHARE] section 2.2.6
499 PidNameXSharingRemoteStoreUid Contains the same value as the PidLidSharingRemoteStoreUid property (section 2.282). PS_INTERNET_HEADERS {00020386-0000-0000-C000-000000000046} PS_INTERNET_HEADERS {00020386-0000-0000-C000-000000000046} PtypString, 0x001F PtypString 0x001F Sharing [MS-OXSHARE] section 2.2.3.4
500 PidNameXSharingRemoteType Contains the same value as the PidLidSharingRemoteType property (section 2.281). PS_INTERNET_HEADERS {00020386-0000-0000-C000-000000000046} PS_INTERNET_HEADERS {00020386-0000-0000-C000-000000000046} PtypString, 0x001F PtypString 0x001F Sharing [MS-OXSHARE] section 2.2.3.6
501 PidNameXSharingRemoteUid Contains the same value as the PidLidSharingRemoteUid property (section 2.282). PS_INTERNET_HEADERS {00020386-0000-0000-C000-000000000046} PS_INTERNET_HEADERS {00020386-0000-0000-C000-000000000046} PtypString, 0x001F PtypString 0x001F Sharing [MS-OXSHARE] section 2.2.3.8
502 PidNameXVoiceMessageAttachmentOrder Contains the list of names for the audio file attachments that are to be played as part of a message, in reverse order. PS_INTERNET_HEADERS {00020386-0000-0000-C000-000000000046} PS_INTERNET_HEADERS {00020386-0000-0000-C000-000000000046} PtypString, 0x001F PtypString 0x001F Unified Messaging [MS-OXOUM] section 2.2.5.10
503 PidNameXVoiceMessageDuration Specifies the length of the attached audio message, in seconds. PS_INTERNET_HEADERS {00020386-0000-0000-C000-000000000046} PS_INTERNET_HEADERS {00020386-0000-0000-C000-000000000046} PtypInteger16, 0x0002 PtypInteger16 0x0002 Unified Messaging [MS-OXOUM] section 2.2.5.4
504 PidNameXVoiceMessageSenderName Contains the name of the caller who left the attached voice message, as provided by the voice network’s caller ID system. PS_INTERNET_HEADERS {00020386-0000-0000-C000-000000000046} PS_INTERNET_HEADERS {00020386-0000-0000-C000-000000000046} PtypString, 0x001F PtypString 0x001F Unified Messaging [MS-OXOUM] section 2.2.5.6
505 PidTagAccess Indicates the operations available to the client for the object. 0x0FF4 PtypInteger32, 0x0003 PtypInteger32 0x0003 Access Control Properties [MS-OXCPRPT] section 2.2.1.1 0x0FF40003
506 PidTagAccessControlListData Contains a permissions list for a folder. 0x3FE0 PtypBinary, 0x0102 PtypBinary 0x0102 Access Control Properties [MS-OXCPERM] section 2.2.3 0x3FE00102
507 PidTagAccessLevel Indicates the client’s access level to the object. 0x0FF7 PtypInteger32, 0x0003 PtypInteger32 0x0003 Access Control Properties [MS-OXCPRPT] section 2.2.1.2 0x0FF70003
508 PidTagAccount Contains the alias of an Address Book object, which is an alternative name by which the object can be identified. 0x3A00 PtypString, 0x001F PtypString 0x001F Address Book [MS-OXOCNTC] section 2.2.1.10.11 0x3A00001F
509 PidTagAdditionalRenEntryIds Contains the indexed entry IDs for several special folders related to conflicts, sync issues, local failures, server failures, junk email and spam. 0x36D8 PtypMultipleBinary, 0x1102 PtypMultipleBinary 0x1102 Outlook Application [MS-OXOSFLD] section 2.2.4 0x36D81102
510 PidTagAdditionalRenEntryIdsEx Contains an array of blocks that specify the EntryIDs of several special folders. 0x36D9 PtypBinary, 0x0102 PtypBinary 0x0102 Outlook Application [MS-OXOSFLD] section 2.2.5 0x36D90102
511 PidTagAddressBookAuthorizedSenders Indicates whether delivery restrictions exist for a recipient. 0x8CD8 PtypObject, 0x000D PtypObject 0x000D Address Book [MS-OXOABK] section 2.2.4.42 0x8CD8000D
512 PidTagAddressBookContainerId Contains the ID of a container on an NSPI server. 0xFFFD PtypInteger32, 0x0003 PtypInteger32 0x0003 Address Book [MS-OXOABK] section 2.2.2.3 0xFFFD0003
513 PidTagAddressBookDeliveryContentLength Specifies the maximum size, in bytes, of a message that a recipient can receive. 0x806A PtypInteger32, 0x0003 PtypInteger32 0x0003 Address Book [MS-OXOABK] section 2.2.3.27 0x806A0003
514 PidTagAddressBookDisplayNamePrintable Contains the printable string version of the display name. 0x39FF PtypString, 0x001F PtypString 0x001F Address Book [MS-OXOABK] section 2.2.3.7 0x39FF001F
515 PidTagAddressBookDisplayTypeExtended Contains a value that indicates how to display an Address Book object in a table or as a recipient on a message. 0x8C93 PtypInteger32, 0x0003 PtypInteger32 0x0003 Address Book [MS-OXOABK] section 2.2.3.35 0x8C930003
516 PidTagAddressBookDistributionListExternalMemberCount Contains the number of external recipients in the distribution list. 0x8CE3 PtypInteger32, 0x0003 PtypInteger32 0x0003 Address Book [MS-OXOABK] section 2.2.3.30 0x8CE30003
517 PidTagAddressBookDistributionListMemberCount Contains the total number of recipients in the distribution list. 0x8CE2 PtypInteger32, 0x0003 PtypInteger32 0x0003 Address Book [MS-OXOABK] section 2.2.3.29 0x8CE20003
518 PidTagAddressBookDistributionListMemberSubmitAccepted Indicates that delivery restrictions exist for a recipient. 0x8073 PtypObject, 0x000D PtypObject 0x000D Address Book [MS-OXOABK] section 2.2.4.44 0x8073000D
519 PidTagAddressBookDistributionListMemberSubmitRejected Indicates that delivery restrictions exist for a recipient. 0x8CDA PtypObject, 0x000D PtypObject 0x000D Address Book [MS-OXOABK] section 2.2.4.45 0x8CDA000D
520 PidTagAddressBookDistributionListRejectMessagesFromDLMembers Indicates that delivery restrictions exist for a recipient. 0x8CDB PtypObject, 0x000D PtypObject 0x000D Address book [MS-OXOAB] section 2.9.2.2 0x8CDB000D
521 PidTagAddressBookEntryId Contains the name-service EntryID of a directory object that refers to a public folder. 0x663B PtypBinary, 0x0102 PtypBinary 0x0102 Address Book [MS-OXCFOLD] section 2.2.2.2.1.4 0x663B0102
522 PidTagAddressBookExtensionAttribute1 Contains custom values defined and populated by the organization that modified the display templates. 0x802D PtypString, 0x001F PtypString 0x001F Address Book [MS-OXOABK] section 2.2.3.34 0x802D001F
523 PidTagAddressBookExtensionAttribute10 Contains custom values defined and populated by the organization that modified the display templates. 0x8036 PtypString, 0x001F PtypString 0x001F Address Book [MS-OXOABK] section 2.2.3.34 0x8036001F
524 PidTagAddressBookExtensionAttribute11 Contains custom values defined and populated by the organization that modified the display templates. 0x8C57 PtypString, 0x001F PtypString 0x001F Address Book [MS-OXOABK] section 2.2.3.34 0x8C57001F
525 PidTagAddressBookExtensionAttribute12 Contains custom values defined and populated by the organization that modified the display templates. 0x8C58 PtypString, 0x001F PtypString 0x001F Address Book [MS-OXOABK] section 2.2.3.34 0x8C58001F
526 PidTagAddressBookExtensionAttribute13 Contains custom values defined and populated by the organization that modified the display templates. 0x8C59 PtypString, 0x001F PtypString 0x001F Address Book [MS-OXOABK] section 2.2.3.34 0x8C59001F
527 PidTagAddressBookExtensionAttribute14 Contains custom values defined and populated by the organization that modified the display templates. 0x8C60 PtypString, 0x001F PtypString 0x001F Address Book [MS-OXOABK] section 2.2.3.34 0x8C60001F
528 PidTagAddressBookExtensionAttribute15 Contains custom values defined and populated by the organization that modified the display templates. 0x8C61 PtypString, 0x001F PtypString 0x001F Address Book [MS-OXOABK] section 2.2.3.34 0x8C61001F
529 PidTagAddressBookExtensionAttribute2 Contains custom values defined and populated by the organization that modified the display templates. 0x802E PtypString, 0x001F PtypString 0x001F Address Book [MS-OXOABK] section 2.2.3.34 0x802E001F
530 PidTagAddressBookExtensionAttribute3 Contains custom values defined and populated by the organization that modified the display templates. 0x802F PtypString, 0x001F PtypString 0x001F Address Book [MS-OXOABK] section 2.2.3.34 0x802F001F
531 PidTagAddressBookExtensionAttribute4 Contains custom values defined and populated by the organization that modified the display templates. 0x8030 PtypString, 0x001F PtypString 0x001F Address Book [MS-OXOABK] section 2.2.3.34 0x8030001F
532 PidTagAddressBookExtensionAttribute5 Contains custom values defined and populated by the organization that modified the display templates. 0x8031 PtypString, 0x001F PtypString 0x001F Address Book [MS-OXOABK] section 2.2.3.34 0x8031001F
533 PidTagAddressBookExtensionAttribute6 Contains custom values defined and populated by the organization that modified the display templates. 0x8032 PtypString, 0x001F PtypString 0x001F Address Book [MS-OXOABK] section 2.2.3.34 0x8032001F
534 PidTagAddressBookExtensionAttribute7 Contains custom values defined and populated by the organization that modified the display templates. 0x8033 PtypString, 0x001F PtypString 0x001F Address Book [MS-OXOABK] section 2.2.3.34 0x8033001F
535 PidTagAddressBookExtensionAttribute8 Contains custom values defined and populated by the organization that modified the display templates. 0x8034 PtypString, 0x001F PtypString 0x001F Address Book [MS-OXOABK] section 2.2.3.34 0x8034001F
536 PidTagAddressBookExtensionAttribute9 Contains custom values defined and populated by the organization that modified the display templates. 0x8035 PtypString, 0x001F PtypString 0x001F Address Book [MS-OXOABK] section 2.2.3.34 0x8035001F
537 PidTagAddressBookFolderPathname This property is deprecated and is to be ignored. 0x8004 PtypString, 0x001F PtypString 0x001F Address Book [MS-OXOABK] section 2.2.6.4 0x8004001F
538 PidTagAddressBookHierarchicalChildDepartments Contains the child departments in a hierarchy of departments. 0x8C9A PtypEmbeddedTable, 0x000D PtypEmbeddedTable 0x000D Address Book [MS-OXOABK] section 2.2.8.1 0x8C9A000D
539 PidTagAddressBookHierarchicalDepartmentMembers Contains all of the mail users that belong to this department. 0x8C97 PtypEmbeddedTable, 0x000D PtypEmbeddedTable 0x000D Address Book [MS-OXOABK] section 2.2.8.3 0x8C97000D
540 PidTagAddressBookHierarchicalIsHierarchicalGroup Indicates whether the distribution list represents a departmental group. 0x8CDD PtypBoolean, 0x000B PtypBoolean 0x000B Address Book [MS-OXOABK] section 2.2.6.5 0x8CDD000B
541 PidTagAddressBookHierarchicalParentDepartment Contains all of the departments to which this department is a child. 0x8C99 PtypEmbeddedTable, 0x000D PtypEmbeddedTable 0x000D Address Book [MS-OXOABK] section 2.2.8.2 0x8C99000D
542 PidTagAddressBookHierarchicalRootDepartment Contains the distinguished name (DN) of either the root Department object or the root departmental group in the department hierarchy for the organization. 0x8C98 PtypString8, 0x001E PtypString8 0x001E Address Book [MS-OXOABK] section 2.2.7.2 0x8C98001E
543 PidTagAddressBookHierarchicalShowInDepartments Lists all Department objects of which the mail user is a member. 0x8C94 PtypEmbeddedTable, 0x000D PtypEmbeddedTable 0x000D Address Book [MS-OXOABK] section 2.2.5.6 0x8C94000D
544 PidTagAddressBookHomeMessageDatabase Contains the DN expressed in the X500 DN format. This property is returned from a name service provider interface (NSPI) server as a PtypEmbeddedTable. Otherwise, the data type is PtypString8. 0x8006 PtypString8, 0x001EPtypEmbeddedTable, 0x000D PtypString8 0x001EPtypEmbeddedTable, 0x000D Address Book [MS-OXOABK] section 2.2.4.37 0x8006001EPtypEmbeddedTable, 0x000D
545 PidTagAddressBookIsMaster Contains a Boolean value of TRUE if it is possible to create Address Book objects in that container, and FALSE otherwise. 0xFFFB PtypBoolean, 0x000B PtypBoolean 0x000B Address Book [MS-OXOABK] section 2.2.2.4 0xFFFB000B
546 PidTagAddressBookIsMemberOfDistributionList Lists all of the distribution lists for which the object is a member. This property is returned from an NSPI server as a PtypEmbeddedTable. Otherwise, the data type is PtypString8. 0x8008 PtypString8, 0x001E; PtypEmbeddedTable, 0x000D PtypString8 0x001E; PtypEmbeddedTable, 0x000D Address Book [MS-OXOABK] section 2.2.5.3 0x8008001E; PtypEmbeddedTable, 0x000D
547 PidTagAddressBookManageDistributionList Contains information for use in display templates for distribution lists. 0x6704 PtypObject, 0x000D PtypObject 0x000D Address Book [MS-OXOABK] section 2.2.10.2 0x6704000D
548 PidTagAddressBookManager Contains one row that references the mail user’s manager. 0x8005 PtypObject, 0x000D PtypObject 0x000D Address Book [MS-OXOABK] section 2.2.5.1 0x8005000D
549 PidTagAddressBookManagerDistinguishedName Contains the DN of the mail user’s manager. 0x8005 PtypString, 0x001F PtypString 0x001F Address Book [MS-OXOABK] section 2.2.4.9 0x8005001F
550 PidTagAddressBookMember Contains the members of the distribution list. 0x8009 PtypEmbeddedTable, 0x000D PtypEmbeddedTable 0x000D Address Book [MS-OXOABK] section 2.2.6.1 0x8009000D
551 PidTagAddressBookMessageId Contains the Short-term Message ID (MID) ([MS-OXCDATA] section 2.2.1.2) of the first message in the local site’s offline address book public folder. 0x674F PtypInteger64, 0x0014 PtypInteger64 0x0014 ProviderDefinedNonTransmittable [MS-OXCSTOR] section 2.2.2.2.2 0x674F0014
552 PidTagAddressBookModerationEnabled Indicates whether moderation is enabled for the mail user or distribution list. 0x8CB5 PtypBoolean, 0x000B PtypBoolean 0x000B Address Book [MS-OXOABK] section 2.2.3.28 0x8CB5000B
553 PidTagAddressBookNetworkAddress Contains a list of names by which a server is known to the various transports in use by the network. 0x8170 PtypMultipleString, 0x101F PtypMultipleString 0x101F Address Book [MS-OXOABK] section 2.2.4.38 0x8170101F
554 PidTagAddressBookObjectDistinguishedName Contains the DN of the Address Book object. 0x803C PtypString, 0x001F PtypString 0x001F Address Book [MS-OXOABK] section 2.2.3.15 0x803C001F
555 PidTagAddressBookObjectGuid Contains a GUID that identifies an Address Book object. 0x8C6D PtypBinary, 0x0102 PtypBinary 0x0102 Address Book [MS-OXOABK] section 2.2.3.25 0x8C6D0102
556 PidTagAddressBookOrganizationalUnitRootDistinguishedName Contains the DN of the Organization object of the mail user’s organization. 0x8CA8 PtypString, 0x001F PtypString 0x001F Address Book [MS-OXOABK] section 2.2.4.39 0x8CA8001F
557 PidTagAddressBookOwner Contains one row that references the distribution list’s owner. 0x800C PtypEmbeddedTable, 0x000D PtypEmbeddedTable 0x000D Address Book [MS-OXOABK] section 2.2.6.2 0x800C000D
558 PidTagAddressBookOwnerBackLink Contains a list of the distribution lists owned by a mail user. 0x8024 PtypEmbeddedTable, 0x000D PtypEmbeddedTable 0x000D Address Book [MS-OXOABK] section 2.2.5.4 0x8024000D
559 PidTagAddressBookParentEntryId Contains the EntryID of the parent container in a hierarchy of address book containers. 0xFFFC PtypBinary, 0x0102 PtypBinary 0x0102 Address Book [MS-OXOABK] section 2.2.2.5 0xFFFC0102
560 PidTagAddressBookPhoneticCompanyName Contains the phonetic representation of the PidTagCompanyName property (section 2.640). 0x8C91 PtypString, 0x001F PtypString 0x001F Address Book [MS-OXOABK] section 2.2.4.12 0x8C91001F
561 PidTagAddressBookPhoneticDepartmentName Contains the phonetic representation of the PidTagDepartmentName property (section 2.673). 0x8C90 PtypString, 0x001F PtypString 0x001F Address Book [MS-OXOABK] section 2.2.4.13 0x8C90001F
562 PidTagAddressBookPhoneticDisplayName Contains the phonetic representation of the PidTagDisplayName property (section 2.677). 0x8C92 PtypString, 0x001F PtypString 0x001F Address Book [MS-OXOABK] section 2.2.3.9 0x8C92001F
563 PidTagAddressBookPhoneticGivenName Contains the phonetic representation of the PidTagGivenName property (section 2.715). 0x8C8E PtypString, 0x001F PtypString 0x001F Address Book [MS-OXOABK] section 2.2.4.10 0x8C8E001F
564 PidTagAddressBookPhoneticSurname Contains the phonetic representation of the PidTagSurname property (section 2.1038). 0x8C8F PtypString, 0x001F PtypString 0x001F Address Book [MS-OXOABK] section 2.2.4.11 0x8C8F001F
565 PidTagAddressBookProxyAddresses Contains alternate email addresses for the Address Book object. 0x800F PtypMultipleString, 0x101F PtypMultipleString 0x101F Address Book [MS-OXOABK] section 2.2.3.23 0x800F101F
566 PidTagAddressBookPublicDelegates Contains a list of mail users who are allowed to send email on behalf of the mailbox owner. 0x8015 PtypEmbeddedTable, 0x000D PtypEmbeddedTable 0x000D Address Book [MS-OXOABK] section 2.2.5.5 0x8015000D
567 PidTagAddressBookReports Lists all of the mail user’s direct reports. 0x800E PtypEmbeddedTable, 0x000D PtypEmbeddedTable 0x000D Address Book [MS-OXOABK] section 2.2.5.2 0x800E000D
568 PidTagAddressBookRoomCapacity Contains the maximum occupancy of the room. 0x0807 PtypInteger32, 0x0003 PtypInteger32 0x0003 Address Book [MS-OXOABK] section 2.2.9.1 0x08070003
569 PidTagAddressBookRoomContainers Contains a list of DNs that represent the address book containers that hold Resource objects, such as conference rooms and equipment. 0x8C96 PtypMultipleString, 0x101F PtypMultipleString 0x101F Address Book [MS-OXOABK] section 2.2.7.1 0x8C96101F
570 PidTagAddressBookRoomDescription Contains a description of the Resource object. 0x0809 PtypString, 0x001F PtypString 0x001F Address Book [MS-OXOABK] section 2.2.9.2 0x0809001F
571 PidTagAddressBookSenderHintTranslations Contains the locale ID and translations of the default mail tip. 0x8CAC PtypMultipleString, 0x101F PtypMultipleString 0x101F Address Book [MS-OXOABK] section 2.2.3.26 0x8CAC101F
572 PidTagAddressBookSeniorityIndex Contains a signed integer that specifies the seniority order of Address Book objects that represent members of a department and are referenced by a Department object or departmental group, with larger values specifying members that are more senior. 0x8CA0 PtypInteger32, 0x0003 PtypInteger32 0x0003 Address Book [MS-OXOABK] section 2.2.3.24 0x8CA00003
573 PidTagAddressBookTargetAddress Contains the foreign system email address of an Address Book object. 0x8011 PtypString, 0x001F PtypString 0x001F Address Book [MS-OXOABK] section 2.2.3.22 0x8011001F
574 PidTagAddressBookUnauthorizedSenders Indicates whether delivery restrictions exist for a recipient. 0x8CD9 PtypObject, 0x000D PtypObject 0x000D Address Book [MS-OXOABK] section 2.2.4.43 0x8CD9000D
575 PidTagAddressBookX509Certificate Contains the ASN_1 DER encoded X.509 certificates for the mail user. 0x8C6A PtypMultipleBinary, 0x1102 PtypMultipleBinary 0x1102 Address Book [MS-OXOABK] section 2.2.4.35 0x8C6A1102
576 PidTagAddressType Contains the email address type of a Message object. 0x3002 PtypString, 0x001F PtypString 0x001F Address Properties [MS-OXOABK] section 2.2.3.13 0x3002001F
577 PidTagAlternateRecipientAllowed Specifies whether the sender permits the message to be auto-forwarded. 0x0002 PtypBoolean, 0x000B PtypBoolean 0x000B Address Properties [MS-OXCMSG] section 2.2.1.36 0x0002000B
578 PidTagAnr Contains a filter value used in ambiguous name resolution. 0x360C PtypString, 0x001F PtypString 0x001F Address Book [MS-OXOABK] section 2.2.10.1 0x360C001F
579 PidTagArchiveDate Specifies the date, in UTC, after which a Message object is archived by the server. 0x301F PtypTime, 0x0040 PtypTime 0x0040 Archive [MS-OXCMSG] section 2.2.1.60.8 0x301F0040
580 PidTagArchivePeriod Specifies the number of days that a Message object can remain unarchived. 0x301E PtypInteger32, 0x0003 PtypInteger32 0x0003 Archive [MS-OXCMSG] section 2.2.1.60.7 0x301E0003
581 PidTagArchiveTag Specifies the GUID of an archive tag. 0x3018 PtypBinary, 0x0102 PtypBinary 0x0102 Archive [MS-OXCMSG] section 2.2.1.60.1 0x30180102
582 PidTagAssistant Contains the name of the mail user’s administrative assistant. 0x3A30 PtypString, 0x001F PtypString 0x001F Address Properties [MS-OXOABK] section 2.2.4.8 0x3A30001F
583 PidTagAssistantTelephoneNumber Contains the telephone number of the mail user’s administrative assistant. 0x3A2E PtypString, 0x001F PtypString 0x001F Address Properties [MS-OXOABK] section 2.2.4.31 0x3A2E001F
584 PidTagAssociated Specifies whether the message being synchronized is an FAI message. 0x67AA PtypBoolean, 0x000B PtypBoolean 0x000B Sync [MS-OXCFXICS] section 2.2.1.5 0x67AA000B
585 PidTagAttachAdditionalInformation Contains attachment encoding information. 0x370F PtypBinary, 0x0102 PtypBinary 0x0102 Message Attachment Properties [MS-OXCMSG] section 2.2.2.21 0x370F0102
586 PidTagAttachContentBase Contains the base of a relative URI. 0x3711 PtypString, 0x001F PtypString 0x001F Message Attachment Properties [MS-OXCMSG] section 2.2.2.29 0x3711001F
587 PidTagAttachContentId Contains a content identifier unique to the Message object that matches a corresponding “cid:” URI schema reference in the HTML body of the Message object. 0x3712 PtypString, 0x001F PtypString 0x001F Message Attachment Properties [MS-OXCMSG] section 2.2.2.29 0x3712001F
588 PidTagAttachContentLocation Contains a relative or full URI that matches a corresponding reference in the HTML body of a Message object. 0x3713 PtypString, 0x001F PtypString 0x001F Message Attachment Properties [MS-OXCMSG] section 2.2.2.29 0x3713001F
589 PidTagAttachDataBinary Contains the contents of the file to be attached. 0x3701 PtypBinary, 0x0102 PtypBinary 0x0102 Message Attachment Properties [MS-OXCMSG] section 2.2.2.7 0x37010102
590 PidTagAttachDataObject Contains the binary representation of the Attachment object in an application-specific format. 0x3701 PtypObject, 0x000D PtypObject 0x000D Message Attachment Properties [MS-OXCMSG] section 2.2.2.8 0x3701000D
591 PidTagAttachEncoding Contains encoding information about the Attachment object. 0x3702 PtypBinary, 0x0102 PtypBinary 0x0102 Message Attachment Properties [MS-OXCMSG] section 2.2.2.20 0x37020102
592 PidTagAttachExtension Contains a file name extension that indicates the document type of an attachment. 0x3703 PtypString, 0x001F PtypString 0x001F Message Attachment Properties [MS-OXCMSG] section 2.2.2.12 0x3703001F
593 PidTagAttachFilename Contains the 8.3 name of the PidTagAttachLongFilename property (section 2.595). 0x3704 PtypString, 0x001F PtypString 0x001F Message Attachment Properties [MS-OXCMSG] section 2.2.2.11 0x3704001F
594 PidTagAttachFlags Indicates which body formats might reference this attachment when rendering data. 0x3714 PtypInteger32, 0x0003 PtypInteger32 0x0003 Message Attachment Properties [MS-OXCMSG] section 2.2.2.18 0x37140003
595 PidTagAttachLongFilename Contains the full filename and extension of the Attachment object. 0x3707 PtypString, 0x001F PtypString 0x001F Message Attachment Properties [MS-OXCMSG] section 2.2.2.10 0x3707001F
596 PidTagAttachLongPathname Contains the fully-qualified path and file name with extension. 0x370D PtypString, 0x001F PtypString 0x001F Message Attachment Properties [MS-OXCMSG] section 2.2.2.13 0x370D001F
597 PidTagAttachmentContactPhoto Indicates that a contact photo attachment is attached to a Contact object. 0x7FFF PtypBoolean, 0x000B PtypBoolean 0x000B Message Attachment Properties [MS-OXOCNTC] section 2.2.1.8.2 0x7FFF000B
598 PidTagAttachmentFlags Indicates special handling for an Attachment object. 0x7FFD PtypInteger32, 0x0003 PtypInteger32 0x0003 Message Attachment Properties [MS-OXCMSG] section 2.2.2.23 0x7FFD0003
599 PidTagAttachmentHidden Indicates whether an Attachment object is hidden from the end user. 0x7FFE PtypBoolean, 0x000B PtypBoolean 0x000B Message Attachment Properties [MS-OXCMSG] section 2.2.2.24 0x7FFE000B
600 PidTagAttachmentLinkId Contains the type of Message object to which an attachment is linked. 0x7FFA PtypInteger32, 0x0003 PtypInteger32 0x0003 Message Attachment Properties [MS-OXCMSG] section 2.2.2.22 0x7FFA0003
601 PidTagAttachMethod Represents the way the contents of an attachment are accessed. 0x3705 PtypInteger32, 0x0003 PtypInteger32 0x0003 Message Attachment Properties [MS-OXCMSG] section 2.2.2.9 0x37050003
602 PidTagAttachMimeTag Contains a content-type MIME header. 0x370E PtypString, 0x001F PtypString 0x001F Message Attachment Properties [MS-OXCMSG] section 2.2.2.29 0x370E001F
603 PidTagAttachNumber Identifies the Attachment object within its Message object. 0x0E21 PtypInteger32, 0x0003 PtypInteger32 0x0003 Message Attachment Properties [MS-OXCMSG] section 2.2.2.6 0x0E210003
604 PidTagAttachPathname Contains the 8.3 name of the PidTagAttachLongPathname property (section 2.596). 0x3708 PtypString, 0x001F PtypString 0x001F Message Attachment Properties [MS-OXCMSG] section 2.2.2.14 0x3708001F
605 PidTagAttachPayloadClass Contains the class name of an object that can display the contents of the message. 0x371A PtypString, 0x001F PtypString 0x001F Outlook Application [MS-OXCMSG] section 2.2.2.29 0x371A001F
606 PidTagAttachPayloadProviderGuidString Contains the GUID of the software component that can display the contents of the message. 0x3719 PtypString, 0x001F PtypString 0x001F Outlook Application [MS-OXCMSG] section 2.2.2.29 0x3719001F
607 PidTagAttachRendering Contains a Windows Metafile, as specified in [MS-WMF], for the Attachment object. 0x3709 PtypBinary, 0x0102 PtypBinary 0x0102 Message Attachment Properties [MS-OXCMSG] section 2.2.2.17 0x37090102
608 PidTagAttachSize Contains the size, in bytes, consumed by the Attachment object on the server. 0x0E20 PtypInteger32, 0x0003 PtypInteger32 0x0003 Message Attachment Properties [MS-OXCMSG] section 2.2.2.5 0x0E200003
609 PidTagAttachTag Contains the identifier information for the application that supplied the Attachment object data. 0x370A PtypBinary, 0x0102 PtypBinary 0x0102 Message Attachment Properties [MS-OXCMSG] section 2.2.2.15 0x370A0102
610 PidTagAttachTransportName Contains the name of an attachment file, modified so that it can be correlated with TNEF messages. 0x370C PtypString, 0x001F PtypString 0x001F Message Attachment Properties [MS-OXCMSG] section 2.2.2.19 0x370C001F
611 PidTagAttributeHidden Specifies the hide or show status of a folder. 0x10F4 PtypBoolean, 0x000B PtypBoolean 0x000B Access Control Properties [MS-OXCFOLD] section 2.2.2.2.2.1 0x10F4000B
612 PidTagAttributeReadOnly Indicates whether an item can be modified or deleted. 0x10F6 PtypBoolean, 0x000B PtypBoolean 0x000B Access Control Properties [MS-XWDCAL] section 2.2.1.8 0x10F6000B
613 PidTagAutoForwardComment Contains text included in an automatically-generated message. 0x0004 PtypString, 0x001F PtypString 0x001F General Report Properties [MS-OXCMSG] section 2.2.1.21 0x0004001F
614 PidTagAutoForwarded Indicates that a Message object has been automatically generated or automatically forwarded. 0x0005 PtypBoolean, 0x000B PtypBoolean 0x000B General Report Properties [MS-OXCMSG] section 2.2.1.20 0x0005000B
615 PidTagAutoResponseSuppress Specifies whether a client or server application will forego sending automated replies in response to this message. 0x3FDF PtypInteger32, 0x0003 PtypInteger32 0x0003 Email [MS-OXOMSG] section 2.2.1.77 0x3FDF0003
616 PidTagBirthday Contains the date of the mail user’s birthday at midnight. 0x3A42 PtypTime, 0x0040 PtypTime 0x0040 Contact Properties [MS-OXOCNTC] section 2.2.1.5.1 0x3A420040
617 PidTagBlockStatus Indicates the user’s preference for viewing external content (such as links to images on an HTTP server) in the message body. 0x1096 PtypInteger32, 0x0003 PtypInteger32 0x0003 Secure Messaging Properties [MS-OXOMSG] section 2.2.1.1 0x10960003
618 PidTagBody Contains message body text in plain text format. 0x1000 PtypString, 0x001F PtypString 0x001F General Message Properties [MS-OXCMSG] section 2.2.1.58.1 0x1000001F
619 PidTagBodyContentId Contains a GUID that corresponds to the current message body. 0x1015 PtypString, 0x001F PtypString 0x001F Exchange [MS-OXCMSG] section 2.2.1.58.7 0x1015001F
620 PidTagBodyContentLocation Contains a globally unique Uniform Resource Identifier (URI) that serves as a label for the current message body. 0x1014 PtypString, 0x001F PtypString 0x001F MIME Properties [MS-OXCMSG] section 2.2.1.58.8 0x1014001F
621 PidTagBodyHtml Contains the HTML body of the Message object. 0x1013 PtypString, 0x001F PtypString 0x001F General Message Properties [MS-OXCMSG] section 2.2.1.58.3 0x1013001F
622 PidTagBusiness2TelephoneNumber Contains a secondary telephone number at the mail user’s place of business. 0x3A1B PtypString, 0x001F PtypString 0x001F Contact Properties [MS-OXOABK] section 2.2.4.23 0x3A1B001F
623 PidTagBusiness2TelephoneNumbers Contains secondary telephone numbers at the mail user’s place of business. 0x3A1B PtypMultipleString, 0x101F PtypMultipleString 0x101F Contact Properties [MS-OXOABK] section 2.2.4.24 0x3A1B101F
624 PidTagBusinessFaxNumber Contains the telephone number of the mail user’s business fax machine. 0x3A24 PtypString, 0x001F PtypString 0x001F Contact Properties [MS-OXOCNTC] section 2.2.1.2.6 0x3A24001F
625 PidTagBusinessHomePage Contains the URL of the mail user’s business home page. 0x3A51 PtypString, 0x001F PtypString 0x001F Contact Properties [MS-OXOCNTC] section 2.2.1.10.14 0x3A51001F
626 PidTagBusinessTelephoneNumber Contains the primary telephone number of the mail user’s place of business. 0x3A08 PtypString, 0x001F PtypString 0x001F Contact Properties [MS-OXOABK] section 2.2.4.21 0x3A08001F
627 PidTagCallbackTelephoneNumber Contains a telephone number to reach the mail user. 0x3A02 PtypString, 0x001F PtypString 0x001F Contact Properties [MS-OXOCNTC] section 2.2.1.4.2 0x3A02001F
628 PidTagCallId Contains a unique identifier associated with the phone call. 0x6806 PtypString, 0x001F PtypString 0x001F Unified Messaging [MS-OXOUM] section 2.2.5.11 0x6806001F
629 PidTagCarTelephoneNumber Contains the mail user’s car telephone number. 0x3A1E PtypString, 0x001F PtypString 0x001F Contact Properties [MS-OXOCNTC] section 2.2.1.4.9 0x3A1E001F
630 PidTagCdoRecurrenceid Identifies a specific instance of a recurring appointment. 0x10C5 PtypTime, 0x0040 PtypTime 0x0040 Exchange [MS-XWDCAL] section 2.2.2.38 0x10C50040
631 PidTagChangeKey Contains a structure that identifies the last change to the object. 0x65E2 PtypBinary, 0x0102 PtypBinary 0x0102 History Properties [MS-OXCFXICS] section 2.2.1.2.7 0x65E20102
632 PidTagChangeNumber Contains a structure that identifies the last change to the message or folder that is currently being synchronized. 0x67A4 PtypInteger64, 0x0014 PtypInteger64 0x0014 Sync [MS-OXCFXICS] section 2.2.1.2.3 0x67A40014
633 PidTagChildrensNames Specifies the names of the children of the contact. 0x3A58 PtypMultipleString, 0x101F PtypMultipleString 0x101F Contact Properties [MS-OXOCNTC] section 2.2.1.10.17 0x3A58101F
634 PidTagClientActions Specifies the actions the client is required to take on the message. 0x6645 PtypBinary, 0x0102 PtypBinary 0x0102 Server-side Rules Properties [MS-OXORULE] section 2.2.6.6 0x66450102
635 PidTagClientActivelyEditingUntil Specifies the date and time, in UTC, until which the client expects to be actively editing the object. 0x3700 Message Time Properties [MS-OXCMSG] section 2.2.1.57 0x3700
636 PidTagClientSubmitTime Contains the current time, in UTC, when the email message is submitted. 0x0039 PtypTime, 0x0040 PtypTime 0x0040 Message Time Properties [MS-OXOMSG] section 2.2.3.11 0x00390040
637 PidTagCodePageId Contains the identifier for the client code page used for Unicode to double-byte character set (DBCS) string conversion. 0x66C3 PtypInteger32, 0x0003 PtypInteger32 0x0003 Exchange Profile Configuration [MS-OXCSTOR] section 2.2.2.1.1.15 0x66C30003
638 PidTagComment Contains a comment about the purpose or content of the Address Book object. 0x3004 PtypString, 0x001F PtypString 0x001F Common [MS-OXCFOLD] section 2.2.2.2.2.2 0x3004001F
639 PidTagCompanyMainTelephoneNumber Contains the main telephone number of the mail user’s company. 0x3A57 PtypString, 0x001F PtypString 0x001F Contact Properties [MS-OXOCNTC] section 2.2.1.4.14 0x3A57001F
640 PidTagCompanyName Contains the mail user’s company name. 0x3A16 PtypString, 0x001F PtypString 0x001F Contact Properties [MS-OXOABK] section 2.2.4.7 0x3A16001F
641 PidTagComputerNetworkName Contains the name of the mail user’s computer network. 0x3A49 PtypString, 0x001F PtypString 0x001F Contact Properties [MS-OXOCNTC] section 2.2.1.10.16 0x3A49001F
642 PidTagConflictEntryId Contains the EntryID of the conflict resolve message. 0x3FF0 PtypBinary, 0x0102 PtypBinary 0x0102 ICS [MS-OXCFXICS] section 2.2.1.4.2 0x3FF00102
643 PidTagContainerClass Contains a string value that describes the type of Message object that a folder contains. 0x3613 PtypString, 0x001F PtypString 0x001F Container Properties [MS-OXCFOLD] section 2.2.2.2.2.3 0x3613001F
644 PidTagContainerContents Empty. An NSPI server defines this value for distribution lists and it is not present for other objects. 0x360F PtypEmbeddedTable, 0x000D PtypEmbeddedTable 0x000D Container Properties [MS-OXOABK] section 2.2.6.3 0x360F000D
645 PidTagContainerFlags Contains a bitmask of flags that describe capabilities of an address book container. 0x3600 PtypInteger32, 0x0003 PtypInteger32 0x0003 Address Book [MS-OXOABK] section 2.2.2.1 0x36000003
646 PidTagContainerHierarchy Identifies all of the subfolders of the current folder. 0x360E PtypObject, 0x000D PtypObject 0x000D Container Properties [MS-OXCFOLD] section 2.2.2.2.2.4 0x360E000D
647 PidTagContentCount Specifies the number of rows under the header row. 0x3602 PtypInteger32, 0x0003 PtypInteger32 0x0003 Folder Properties [MS-OXCFOLD] section 2.2.2.2.1.1 0x36020003
648 PidTagContentFilterSpamConfidenceLevel Indicates a confidence level that the message is spam. 0x4076 PtypInteger32, 0x0003 PtypInteger32 0x0003 Secure Messaging Properties [MS-OXCSPAM] section 2.2.1.3 0x40760003
649 PidTagContentUnreadCount Specifies the number of rows under the header row that have the PidTagRead property (section 2.880) set to FALSE. 0x3603 PtypInteger32, 0x0003 PtypInteger32 0x0003 Folder Properties [MS-OXCFOLD] section 2.2.2.2.1.2 0x36030003
650 PidTagConversationId Contains a computed value derived from other conversation-related properties. 0x3013 PtypBinary, 0x0102 PtypBinary 0x0102 Conversations [MS-OXOMSG] section 2.2.1.2 0x30130102
651 PidTagConversationIndex Indicates the relative position of this message within a conversation thread. 0x0071 PtypBinary, 0x0102 PtypBinary 0x0102 General Message Properties [MS-OXOMSG] section 2.2.1.3 0x00710102
652 PidTagConversationIndexTracking Indicates whether the GUID portion of the PidTagConversationIndex property (section 2.651) is to be used to compute the PidTagConversationId property (section 2.650). 0x3016 PtypBoolean, 0x000B PtypBoolean 0x000B Conversations [MS-OXOMSG] section 2.2.1.4 0x3016000B
653 PidTagConversationTopic Contains an unchanging copy of the original subject. 0x0070 PtypString, 0x001F PtypString 0x001F General Message Properties [MS-OXOMSG] section 2.2.1.5 0x0070001F
654 PidTagCountry Contains the name of the mail user’s country/region. 0x3A26 PtypString, 0x001F PtypString 0x001F Contact Properties [MS-OXOABK] section 2.2.4.19 0x3A26001F
655 PidTagCreationTime Contains the time, in UTC, that the object was created. 0x3007 PtypTime, 0x0040 PtypTime 0x0040 Message Time Properties [MS-OXCMSG] section 2.2.2.3 0x30070040
656 PidTagCreatorEntryId Specifies the original author of the message according to their Address Book EntryID. 0x3FF9 PtypBinary, 0x0102 PtypBinary 0x0102 ID Properties [MS-OXCMSG] section 2.2.1.31 0x3FF90102
657 PidTagCreatorName Contains the name of the creator of a Message object. 0x3FF8 PtypString, 0x001F PtypString 0x001F General Message Properties [MS-OXCMSG] section 2.2.1.51 0x3FF8001F
658 PidTagCustomerId Contains the mail user’s customer identification number. 0x3A4A PtypString, 0x001F PtypString 0x001F Contact Properties [MS-OXOCNTC] section 2.2.1.10.8 0x3A4A001F
659 PidTagDamBackPatched Indicates whether the Deferred Action Message (DAM) was updated by the server. 0x6647 PtypBoolean, 0x000B PtypBoolean 0x000B Server-side Rules Properties [MS-OXORULE] section 2.2.6.2 0x6647000B
660 PidTagDamOriginalEntryId Contains the EntryID of the delivered message that the client has to process. 0x6646 PtypBinary, 0x0102 PtypBinary 0x0102 Server-side Rules Properties [MS-OXORULE] section 2.2.6.3 0x66460102
661 PidTagDefaultPostMessageClass Contains the message class of the object. 0x36E5 PtypString, 0x001F PtypString 0x001F MapiContainer [MS-OXOCAL] section 2.2.11.2 0x36E5001F
662 PidTagDeferredActionMessageOriginalEntryId Contains the server EntryID for the DAM. 0x6741 PtypServerId, 0x00FB PtypServerId 0x00FB Server-side Rules Properties [MS-OXORULE] section 2.2.6.8 0x674100FB
663 PidTagDeferredDeliveryTime Contains the date and time, in UTC, at which the sender prefers that the message be delivered. 0x000F PtypTime, 0x0040 PtypTime 0x0040 MapiEnvelope [MS-OXOMSG] section 2.2.1.6 0x000F0040
664 PidTagDeferredSendNumber Contains a number used in the calculation of how long to defer sending a message. 0x3FEB PtypInteger32, 0x0003 PtypInteger32 0x0003 MapiStatus [MS-OXOMSG] section 2.2.3.2 0x3FEB0003
665 PidTagDeferredSendTime Contains the amount of time after which a client would like to defer sending the message. 0x3FEF PtypTime, 0x0040 PtypTime 0x0040 MapiStatus [MS-OXOMSG] section 2.2.3.4 0x3FEF0040
666 PidTagDeferredSendUnits Specifies the unit of time used as a multiplier with the PidTagDeferredSendNumber property (section 2.664) value. 0x3FEC PtypInteger32, 0x0003 PtypInteger32 0x0003 MapiStatus [MS-OXOMSG] section 2.2.3.3 0x3FEC0003
667 PidTagDelegatedByRule Specifies whether the message was forwarded due to the triggering of a delegate forward rule. 0x3FE3 PtypBoolean, 0x000B PtypBoolean 0x000B MapiStatus [MS-OXOMSG] section 2.2.1.84 0x3FE3000B
668 PidTagDelegateFlags Indicates whether delegates can view Message objects that are marked as private. 0x686B PtypMultipleInteger32, 0x1003 PtypMultipleInteger32 0x1003 MessageClassDefinedTransmittable [MS-OXODLGT] section 2.2.2.2.6 0x686B1003
669 PidTagDeleteAfterSubmit Indicates that the original message is to be deleted after it is sent. 0x0E01 PtypBoolean, 0x000B PtypBoolean 0x000B MapiNonTransmittable [MS-OXOMSG] section 2.2.3.8 0x0E01000B
670 PidTagDeletedCountTotal Contains the total count of messages that have been deleted from a folder, excluding messages deleted within subfolders. 0x670B PtypInteger32, 0x0003 PtypInteger32 0x0003 Server [MS-OXCFOLD] section 2.2.2.2.1.15 0x670B0003
671 PidTagDeletedOn Specifies the time, in UTC, when the item or folder was soft deleted. 0x668F PtypTime, 0x0040 PtypTime 0x0040 ExchangeFolder [MS-OXCFOLD] section 2.2.2.2.1.3 0x668F0040
672 PidTagDeliverTime Contains the delivery time for a delivery status notification, as specified [RFC3464], or a message disposition notification, as specified in [RFC3798]. 0x0010 PtypTime, 0x0040 PtypTime 0x0040 Email [MS-OXOMSG] section 2.2.2.29 0x00100040
673 PidTagDepartmentName Contains a name for the department in which the mail user works. 0x3A18 PtypString, 0x001F PtypString 0x001F MapiMailUser [MS-OXOABK] section 2.2.4.6 0x3A18001F
674 PidTagDepth Specifies the number of nested categories in which a given row is contained. 0x3005 PtypInteger32, 0x0003 PtypInteger32 0x0003 MapiCommon [MS-OXCTABL] section 2.2.1.4 0x30050003
675 PidTagDisplayBcc Contains a list of blind carbon copy (Bcc) recipient display names. 0x0E02 PtypString, 0x001F PtypString 0x001F Message Properties [MS-OXOMSG] section 2.2.1.7 0x0E02001F
676 PidTagDisplayCc Contains a list of carbon copy (Cc) recipient display names. 0x0E03 PtypString, 0x001F PtypString 0x001F Message Properties [MS-OXOMSG] section 2.2.1.8 0x0E03001F
677 PidTagDisplayName Contains the display name of the folder. 0x3001 PtypString, 0x001F PtypString 0x001F MapiCommon [MS-OXCFOLD] section 2.2.2.2.2.5 0x3001001F
678 PidTagDisplayNamePrefix Contains the mail user’s honorific title. 0x3A45 PtypString, 0x001F PtypString 0x001F MapiMailUser [MS-OXOCNTC] section 2.2.1.1.3 0x3A45001F
679 PidTagDisplayTo Contains a list of the primary recipient display names, separated by semicolons, when an email message has primary recipients . 0x0E04 PtypString, 0x001F PtypString 0x001F Message Properties [MS-OXOMSG] section 2.2.1.9 0x0E04001F
680 PidTagDisplayType Contains an integer value that indicates how to display an Address Book object in a table or as an addressee on a message. 0x3900 PtypInteger32, 0x0003 PtypInteger32 0x0003 MapiAddressBook [MS-OXOABK] section 2.2.3.11 0x39000003
681 PidTagDisplayTypeEx Contains an integer value that indicates how to display an Address Book object in a table or as a recipient on a message. 0x3905 PtypInteger32, 0x0003 PtypInteger32 0x0003 MapiAddressBook [MS-OXOABK] section 2.2.3.12 0x39050003
682 PidTagEmailAddress Contains the email address of a Message object. 0x3003 PtypString, 0x001F PtypString 0x001F MapiCommon [MS-OXOABK] section 2.2.3.14 0x3003001F
683 PidTagEndDate Contains the value of the PidLidAppointmentEndWhole property (section 2.14). 0x0061 PtypTime, 0x0040 PtypTime 0x0040 MapiEnvelope Property set [MS-OXOCAL] section 2.2.1.31 0x00610040
684 PidTagEntryId Contains the information to identify many different types of messaging objects. 0x0FFF PtypBinary, 0x0102 PtypBinary 0x0102 ID Properties [MS-OXCPERM] section 2.2.4 0x0FFF0102
685 PidTagExceptionEndTime Contains the end date and time of the exception in the local time zone of the computer when the exception is created. 0x7FFC PtypTime, 0x0040 PtypTime 0x0040 MessageClassDefinedNonTransmittable [MS-OXOCAL] section 2.2.10.1.5 0x7FFC0040
686 PidTagExceptionReplaceTime Indicates the original date and time, in UTC, at which the instance in the recurrence pattern would have occurred if it were not an exception. 0x7FF9 PtypTime, 0x0040 PtypTime 0x0040 MessageClassDefinedNonTransmittable [MS-OXOCAL] section 2.2.10.1.6 0x7FF90040
687 PidTagExceptionStartTime Contains the start date and time of the exception in the local time zone of the computer when the exception is created. 0x7FFB PtypTime, 0x0040 PtypTime 0x0040 MessageClassDefinedNonTransmittable [MS-OXOCAL] section 2.2.10.1.4 0x7FFB0040
688 PidTagExchangeNTSecurityDescriptor Contains the calculated security descriptor for the item. 0x0E84 PtypBinary, 0x0102 PtypBinary 0x0102 Calendar Document [MS-XWDCAL] section 2.2.8.8 0x0E840102
689 PidTagExpiryNumber Contains an integer value that is used along with the PidTagExpiryUnits property (section 2.691) to define the expiry send time. 0x3FED PtypInteger32, 0x0003 PtypInteger32 0x0003 MapiStatus [MS-OXOMSG] section 2.2.3.5 0x3FED0003
690 PidTagExpiryTime Contains the time, in UTC, after which a client wants to receive an expiry event if the message arrives late. 0x0015 PtypTime, 0x0040 PtypTime 0x0040 MapiEnvelope [MS-OXOMSG] section 2.2.3.7 0x00150040
691 PidTagExpiryUnits Contains the unit of time that the value of the PidTagExpiryNumber property (section 2.689) multiplies. 0x3FEE PtypInteger32, 0x0003 PtypInteger32 0x0003 MapiStatus [MS-OXOMSG] section 2.2.3.6 0x3FEE0003
692 PidTagExtendedFolderFlags Contains encoded sub-properties for a folder. 0x36DA PtypBinary, 0x0102 PtypBinary 0x0102 MapiContainer [MS-OXOSRCH] section 2.2.2.1.2 0x36DA0102
693 PidTagExtendedRuleMessageActions Contains action information about named properties used in the rule. 0x0E99 PtypBinary, 0x0102 PtypBinary 0x0102 Rules [MS-OXORULE] section 2.2.4.1.9 0x0E990102
694 PidTagExtendedRuleMessageCondition Contains condition information about named properties used in the rule. 0x0E9A PtypBinary, 0x0102 PtypBinary 0x0102 Rules [MS-OXORULE] section 2.2.4.1.10 0x0E9A0102
695 PidTagExtendedRuleSizeLimit Contains the maximum size, in bytes, that the user is allowed to accumulate for a single extended rule. 0x0E9B PtypInteger32, 0x0003 PtypInteger32 0x0003 Rules [MS-OXCSTOR] section 2.2.2.1.1.1 0x0E9B0003
696 PidTagFaxNumberOfPages Contains the number of pages in a Fax object. 0x6804 PtypInteger32, 0x0003 PtypInteger32 0x0003 Unified Messaging [MS-OXOUM] section 2.2.5.7 0x68040003
697 PidTagFlagCompleteTime Specifies the date and time, in UTC, that the Message object was flagged as complete. 0x1091 PtypTime, 0x0040 PtypTime 0x0040 Miscellaneous Properties [MS-OXOFLAG] section 2.2.1.3 0x10910040
698 PidTagFlagStatus Specifies the flag state of the Message object. 0x1090 PtypInteger32, 0x0003 PtypInteger32 0x0003 Miscellaneous Properties [MS-OXOFLAG] section 2.2.1.1 0x10900003
699 PidTagFlatUrlName Contains a unique identifier for an item across the message store. 0x670E PtypString, 0x001F PtypString 0x001F ExchangeAdministrative [MS-XWDCAL] section 2.2.8.9 0x670E001F
700 PidTagFolderAssociatedContents Identifies all FAI messages in the current folder. 0x3610 PtypObject, 0x000D PtypObject 0x000D MapiContainer [MS-OXCFOLD] section 2.2.2.2.2.6 0x3610000D
701 PidTagFolderFlags Contains a computed value to specify the type or state of a folder. 0x66A8 PtypInteger32, 0x0003 PtypInteger32 0x0003 ExchangeAdministrative [MS-OXCFOLD] section 2.2.2.2.1.5 0x66A80003
702 PidTagFolderId Contains the Folder ID (FID) ([MS-OXCDATA] section 2.2.1.1) of the folder. 0x6748 PtypInteger64, 0x0014 PtypInteger64 0x0014 ID Properties [MS-OXCFOLD] section 2.2.2.2.1.6 0x67480014
703 PidTagFolderType Specifies the type of a folder that includes the Root folder, Generic folder, and Search folder. 0x3601 PtypInteger32, 0x0003 PtypInteger32 0x0003 MapiContainer [MS-OXCFOLD] section 2.2.2.2.2.7 0x36010003
704 PidTagFollowupIcon Specifies the flag color of the Message object. 0x1095 PtypInteger32, 0x0003 PtypInteger32 0x0003 RenMessageFolder [MS-OXOFLAG] section 2.2.1.2 0x10950003
705 PidTagFreeBusyCountMonths Contains an integer value used to calculate the start and end dates of the range of free/busy data to be published to the public folders. 0x6869 PtypInteger32, 0x0003 PtypInteger32 0x0003 MessageClassDefinedTransmittable [MS-OXOCAL] section 2.2.12.1 0x68690003
706 PidTagFreeBusyEntryIds Contains EntryIDs of the Delegate Information object, the free/busy message of the logged on user, and the folder with the PidTagDisplayName property (section 2.677) value of “Freebusy Data”. 0x36E4 PtypMultipleBinary, 0x1102 PtypMultipleBinary 0x1102 MapiContainer [MS-OXOSFLD] section 2.2.6 0x36E41102
707 PidTagFreeBusyMessageEmailAddress Specifies the email address of the user or resource to whom this free/busy message applies. 0x6849 PtypString, 0x001F PtypString 0x001F MessageClassDefinedTransmittable [MS-OXOPFFB] section 2.2.1.2.12 0x6849001F
708 PidTagFreeBusyPublishEnd Specifies the end time, in UTC, of the publishing range. 0x6848 PtypInteger32, 0x0003 PtypInteger32 0x0003 Free/Busy Properties [MS-OXOPFFB] section 2.2.1.2.10 0x68480003
709 PidTagFreeBusyPublishStart Specifies the start time, in UTC, of the publishing range. 0x6847 PtypInteger32, 0x0003 PtypInteger32 0x0003 Free/Busy Properties [MS-OXOPFFB] section 2.2.1.2.9 0x68470003
710 PidTagFreeBusyRangeTimestamp Specifies the time, in UTC, that the data was published. 0x6868 PtypTime, 0x0040 PtypTime 0x0040 Free/Busy Properties [MS-OXOPFFB] section 2.2.1.2.11 0x68680040
711 PidTagFtpSite Contains the File Transfer Protocol (FTP) site address of the mail user. 0x3A4C PtypString, 0x001F PtypString 0x001F MapiMailUser [MS-OXOCNTC] section 2.2.1.10.15 0x3A4C001F
712 PidTagGatewayNeedsToRefresh This property is deprecated and SHOULD NOT be used. 0x6846 PtypBoolean, 0x000B PtypBoolean 0x000B MessageClassDefinedTransmittable [MS-OXOPFFB] section 2.2.1.4.1 0x6846000B
713 PidTagGender Contains a value that represents the mail user’s gender. 0x3A4D PtypInteger16, 0x0002 PtypInteger16 0x0002 MapiMailUser [MS-OXOCNTC] section 2.2.1.10.20 0x3A4D0002
714 PidTagGeneration Contains a generational abbreviation that follows the full name of the mail user. 0x3A05 PtypString, 0x001F PtypString 0x001F MapiMailUser [MS-OXOCNTC] section 2.2.1.1.2 0x3A05001F
715 PidTagGivenName Contains the mail user’s given name. 0x3A06 PtypString, 0x001F PtypString 0x001F MapiMailUser [MS-OXOABK] section 2.2.4.2 0x3A06001F
716 PidTagGovernmentIdNumber Contains a government identifier for the mail user. 0x3A07 PtypString, 0x001F PtypString 0x001F MapiMailUser [MS-OXOCNTC] section 2.2.1.10.9 0x3A07001F
717 PidTagHasAttachments Indicates whether the Message object contains at least one attachment. 0x0E1B PtypBoolean, 0x000B PtypBoolean 0x000B Message Attachment Properties Property set [MS-OXCMSG] section 2.2.1.2 0x0E1B000B
718 PidTagHasDeferredActionMessages Indicates whether a Message object has a deferred action message associated with it. 0x3FEA PtypBoolean, 0x000B PtypBoolean 0x000B Rules [MS-OXORULE] section 2.2.9.1 0x3FEA000B
719 PidTagHasNamedProperties Indicates whether the Message object has a named property. 0x664A PtypBoolean, 0x000B PtypBoolean 0x000B ExchangeMessageReadOnly [MS-OXCMSG] section 2.2.1.39 0x664A000B
720 PidTagHasRules Indicates whether a Folder object has rules. 0x663A PtypBoolean, 0x000B PtypBoolean 0x000B ExchangeFolder [MS-OXORULE] section 2.2.8.1 0x663A000B
721 PidTagHierarchyChangeNumber Contains a number that monotonically increases every time a subfolder is added to, or deleted from, this folder. 0x663E PtypInteger32, 0x0003 PtypInteger32 0x0003 ExchangeFolder [MS-OXCFOLD] section 2.2.2.2.1.8 0x663E0003
722 PidTagHierRev Specifies the time, in UTC, to trigger the client in cached mode to synchronize the folder hierarchy. 0x4082 PtypTime, 0x0040? PtypTime 0x0040? TransportEnvelope [MS-OXCFOLD] section 2.2.2.2.1.9 0x40820040?
723 PidTagHobbies Contains the names of the mail user’s hobbies. 0x3A43 PtypString, 0x001F PtypString 0x001F MapiMailUser [MS-OXOCNTC] section 2.2.1.10.2 0x3A43001F
724 PidTagHome2TelephoneNumber Contains a secondary telephone number at the mail user’s home. 0x3A2F PtypString, 0x001F PtypString 0x001F MapiMailUser [MS-OXOABK] section 2.2.4.25 0x3A2F001F
725 PidTagHome2TelephoneNumbers Contains secondary telephone numbers at the mail user’s home. 0x3A2F PtypMultipleString, 0x101F PtypMultipleString 0x101F MapiMailUser [MS-OXOABK] section 2.2.4.26 0x3A2F101F
726 PidTagHomeAddressCity Contains the name of the mail user’s home locality, such as the town or city. 0x3A59 PtypString, 0x001F PtypString 0x001F MapiMailUser [MS-OXOCNTC] section 2.2.1.3.2 0x3A59001F
727 PidTagHomeAddressCountry Contains the name of the mail user’s home country/region. 0x3A5A PtypString, 0x001F PtypString 0x001F MapiMailUser [MS-OXOCNTC] section 2.2.1.3.5 0x3A5A001F
728 PidTagHomeAddressPostalCode Contains the postal code for the mail user’s home postal address. 0x3A5B PtypString, 0x001F PtypString 0x001F MapiMailUser [MS-OXOCNTC] section 2.2.1.3.4 0x3A5B001F
729 PidTagHomeAddressPostOfficeBox Contains the number or identifier of the mail user’s home post office box. 0x3A5E PtypString, 0x001F PtypString 0x001F MapiMailUser [MS-OXOCNTC] section 2.2.1.3.7 0x3A5E001F
730 PidTagHomeAddressStateOrProvince Contains the name of the mail user’s home state or province. 0x3A5C PtypString, 0x001F PtypString 0x001F MapiMailUser [MS-OXOCNTC] section 2.2.1.3.3 0x3A5C001F
731 PidTagHomeAddressStreet Contains the mail user’s home street address. 0x3A5D PtypString, 0x001F PtypString 0x001F MapiMailUser [MS-OXOABK] section 2.2.4.20 0x3A5D001F
732 PidTagHomeFaxNumber Contains the telephone number of the mail user’s home fax machine. 0x3A25 PtypString, 0x001F PtypString 0x001F MapiMailUser [MS-OXOCNTC] section 2.2.1.2.6 0x3A25001F
733 PidTagHomeTelephoneNumber Contains the primary telephone number of the mail user’s home. 0x3A09 PtypString, 0x001F PtypString 0x001F MapiMailUser [MS-OXOABK] section 2.2.4.22 0x3A09001F
734 PidTagHtml Contains message body text in HTML format. 0x1013 PtypBinary, 0x0102 PtypBinary 0x0102 General Message Properties [MS-OXCMSG] section 2.2.1.58.9 0x10130102
735 PidTagICalendarEndTime Contains the date and time, in UTC, when an appointment or meeting ends. 0x10C4 PtypTime, 0x0040 PtypTime 0x0040 Calendar [MS-XWDCAL] section 2.2.2.39 0x10C40040
736 PidTagICalendarReminderNextTime Contains the date and time, in UTC, for the activation of the next reminder. 0x10CA PtypTime, 0x0040 PtypTime 0x0040 Calendar [MS-XWDCAL] section 2.2.2.40 0x10CA0040
737 PidTagICalendarStartTime Contains the date and time, in UTC, when the appointment or meeting starts. 0x10C3 PtypTime, 0x0040 PtypTime 0x0040 Calendar Property set [MS-XWDCAL] section 2.2.2.41 0x10C30040
738 PidTagIconIndex Specifies which icon is to be used by a user interface when displaying a group of Message objects. 0x1080 PtypInteger32, 0x0003 PtypInteger32 0x0003 General Message Properties [MS-OXOMSG] section 2.2.1.10 0x10800003
739 PidTagImportance Indicates the level of importance assigned by the end user to the Message object. 0x0017 PtypInteger32, 0x0003 PtypInteger32 0x0003 General Message Properties [MS-OXCMSG] section 2.2.1.11 0x00170003
740 PidTagInConflict Specifies whether the attachment represents an alternate replica. 0x666C PtypBoolean, 0x000B PtypBoolean 0x000B Conflict Note [MS-OXCFXICS] section 2.2.1.4.3 0x666C000B
741 PidTagInitialDetailsPane Indicates which page of a display template to display first. 0x3F08 PtypInteger32, 0x0003 PtypInteger32 0x0003 MAPI Display Tables [MS-OXOABK] section 2.2.3.33 0x3F080003
742 PidTagInitials Contains the initials for parts of the full name of the mail user. 0x3A0A PtypString, 0x001F PtypString 0x001F Address Properties [MS-OXOABK] section 2.2.4.3 0x3A0A001F
743 PidTagInReplyToId Contains the value of the original message’s PidTagInternetMessageId property (section 2.749) value. 0x1042 PtypString, 0x001F PtypString 0x001F General Message Properties [MS-OXOMSG] section 2.2.1.13 0x1042001F
744 PidTagInstanceKey Contains an object on an NSPI server. 0x0FF6 PtypBinary, 0x0102 PtypBinary 0x0102 Table Properties [MS-OXOABK] section 2.2.3.6 0x0FF60102
745 PidTagInstanceNum Contains an identifier for a single instance of a row in the table. 0x674E PtypInteger32, 0x0003 PtypInteger32 0x0003 ProviderDefinedNonTransmittable [MS-OXCTABL] section 2.2.1.2 0x674E0003
746 PidTagInstID Contains an identifier for all instances of a row in the table. 0x674D PtypInteger64, 0x0014 PtypInteger64 0x0014 ProviderDefinedNonTransmittable [MS-OXCTABL] section 2.2.1.1 0x674D0014
747 PidTagInternetCodepage Indicates the code page used for the PidTagBody property (section 2.618) or the PidTagBodyHtml property (section 2.621). 0x3FDE PtypInteger32, 0x0003 PtypInteger32 0x0003 Miscellaneous Properties [MS-OXCMSG] section 2.2.1.58.6 0x3FDE0003
748 PidTagInternetMailOverrideFormat Indicates the encoding method and HTML inclusion for attachments. 0x5902 PtypInteger32, 0x0003 PtypInteger32 0x0003 MIME Properties [MS-OXOMSG] section 2.2.1.11 0x59020003
749 PidTagInternetMessageId Corresponds to the message-id field. 0x1035 PtypString, 0x001F PtypString 0x001F MIME Properties [MS-OXOMSG] section 2.2.1.12 0x1035001F
750 PidTagInternetReferences Contains a list of message IDs that specify the messages to which this reply is related. 0x1039 PtypString, 0x001F PtypString 0x001F MIME Properties [MS-OXCMSG] section 2.2.1.26 0x1039001F
751 PidTagIpmAppointmentEntryId Contains the EntryID of the Calendar folder. 0x36D0 PtypBinary, 0x0102 PtypBinary 0x0102 Folder Properties [MS-OXOSFLD] section 2.2.3 0x36D00102
752 PidTagIpmArchiveEntryId Contains the EntryID of the Archive folder. 0x35FF PtypBinary, 0x0102 PtypBinary 0x0102 Folder Properties [MS-OXOSFLD] section 2.2.3 0x35FF0102
753 PidTagIpmContactEntryId Contains the EntryID of the Contacts folder. 0x36D1 PtypBinary, 0x0102 PtypBinary 0x0102 Folder Properties [MS-OXOSFLD] section 2.2.3 0x36D10102
754 PidTagIpmDraftsEntryId Contains the EntryID of the Drafts folder. 0x36D7 PtypBinary, 0x0102 PtypBinary 0x0102 Folder Properties [MS-OXOSFLD] section 2.2.3 0x36D70102
755 PidTagIpmJournalEntryId Contains the EntryID of the Journal folder. 0x36D2 PtypBinary, 0x0102 PtypBinary 0x0102 Folder Properties [MS-OXOSFLD] section 2.2.3 0x36D20102
756 PidTagIpmNoteEntryId Contains the EntryID of the Notes folder. 0x36D3 PtypBinary, 0x0102 PtypBinary 0x0102 Folder Properties [MS-OXOSFLD] section 2.2.3 0x36D30102
757 PidTagIpmTaskEntryId Contains the EntryID of the Tasks folder. 0x36D4 PtypBinary, 0x0102 PtypBinary 0x0102 Folder Properties [MS-OXOSFLD] section 2.2.3 0x36D40102
758 PidTagIsdnNumber Contains the Integrated Services Digital Network (ISDN) telephone number of the mail user. 0x3A2D PtypString, 0x001F PtypString 0x001F Address Properties [MS-OXOCNTC] section 2.2.1.4.16 0x3A2D001F
759 PidTagJunkAddRecipientsToSafeSendersList Indicates whether email recipients are to be added to the safe senders list. 0x6103 PtypInteger32, 0x0003 PtypInteger32 0x0003 Spam [MS-OXCSPAM] section 2.2.2.1 0x61030003
760 PidTagJunkIncludeContacts Indicates whether email addresses of the contacts in the Contacts folder are treated in a special way with respect to the spam filter. 0x6100 PtypInteger32, 0x0003 PtypInteger32 0x0003 Spam [MS-OXCSPAM] section 2.2.2.2 0x61000003
761 PidTagJunkPermanentlyDelete Indicates whether messages identified as spam can be permanently deleted. 0x6102 PtypInteger32, 0x0003 PtypInteger32 0x0003 Spam [MS-OXCSPAM] section 2.2.2.3 0x61020003
762 PidTagJunkPhishingEnableLinks Indicated whether the phishing stamp on a message is to be ignored. 0x6107 PtypBoolean, 0x000B PtypBoolean 0x000B Spam [MS-OXCSPAM] section 2.2.2.4 0x6107000B
763 PidTagJunkThreshold Indicates how aggressively incoming email is to be sent to the Junk Email folder. 0x6101 PtypInteger32, 0x0003 PtypInteger32 0x0003 Spam [MS-OXCSPAM] section 2.2.2.5 0x61010003
764 PidTagKeyword Contains a keyword that identifies the mail user to the mail user’s system administrator. 0x3A0B PtypString, 0x001F PtypString 0x001F Address Properties [MS-OXOABK] section 2.2.4.32 0x3A0B001F
765 PidTagLanguage Contains a value that indicates the language in which the messaging user is writing messages. 0x3A0C PtypString, 0x001F PtypString 0x001F Address Properties [MS-OXOCNTC] section 2.2.1.10.4 0x3A0C001F
766 PidTagLastModificationTime Contains the time, in UTC, of the last modification to the object. 0x3008 PtypTime, 0x0040 PtypTime 0x0040 Message Time Properties [MS-OXCMSG] section 2.2.2.2 0x30080040
767 PidTagLastModifierEntryId Specifies the Address Book EntryID of the last user to modify the contents of the message. 0x3FFB PtypBinary, 0x0102 PtypBinary 0x0102 History Properties [MS-OXCMSG] section 2.2.1.32 0x3FFB0102
768 PidTagLastModifierName Contains the name of the last mail user to change the Message object. 0x3FFA PtypString, 0x001F PtypString 0x001F History Properties [MS-OXCPRPT] section 2.2.1.5 0x3FFA001F
769 PidTagLastVerbExecuted Specifies the last verb executed for the message item to which it is related. 0x1081 PtypInteger32, 0x0003 PtypInteger32 0x0003 History Properties [MS-OXOMSG] section 2.2.1.14 0x10810003
770 PidTagLastVerbExecutionTime Contains the date and time, in UTC, during which the operation represented in the PidTagLastVerbExecuted property (section 2.769) took place. 0x1082 PtypTime, 0x0040 PtypTime 0x0040 History Properties [MS-OXOMSG] section 2.2.1.15 0x10820040
771 PidTagListHelp Contains a URI that provides detailed help information for the mailing list from which an email message was sent. 0x1043 PtypString, 0x001F PtypString 0x001F Miscellaneous Properties [MS-OXOMSG] section 2.2.1.81 0x1043001F
772 PidTagListSubscribe Contains the URI that subscribes a recipient to a message’s associated mailing list. 0x1044 PtypString, 0x001F PtypString 0x001F Miscellaneous Properties [MS-OXOMSG] section 2.2.1.82 0x1044001F
773 PidTagListUnsubscribe Contains the URI that unsubscribes a recipient from a message’s associated mailing list. 0x1045 PtypString, 0x001F PtypString 0x001F Miscellaneous Properties [MS-OXOMSG] section 2.2.1.83 0x1045001F
774 PidTagLocalCommitTime Specifies the time, in UTC, that a Message object or Folder object was last changed. 0x6709 PtypTime, 0x0040 PtypTime 0x0040 Server 0x67090040
775 PidTagLocalCommitTimeMax Contains the time of the most recent message change within the folder container, excluding messages changed within subfolders. 0x670A PtypTime, 0x0040 PtypTime 0x0040 Server [MS-OXCFOLD] section 2.2.2.2.1.14 0x670A0040
776 PidTagLocaleId Contains the Logon object LocaleID. 0x66A1 PtypInteger32, 0x0003 PtypInteger32 0x0003 Miscellaneous Properties [MS-OXCSTOR] section 2.2.2.1.1.12 0x66A10003
777 PidTagLocality Contains the name of the mail user’s locality, such as the town or city. 0x3A27 PtypString, 0x001F PtypString 0x001F Address Properties [MS-OXOABK] section 2.2.4.16 0x3A27001F
778 PidTagLocation Contains the location of the mail user. 0x3A0D PtypString, 0x001F PtypString 0x001F Address Properties [MS-OXOCNTC] section 2.2.1.10.5 0x3A0D001F
779 PidTagMailboxOwnerEntryId Contains the EntryID in the Global Address List (GAL) of the owner of the mailbox. 0x661B PtypBinary, 0x0102 PtypBinary 0x0102 Message Store Properties [MS-OXCSTOR] section 2.2.2.1.1.7 0x661B0102
780 PidTagMailboxOwnerName Contains the display name of the owner of the mailbox. 0x661C PtypString, 0x001F PtypString 0x001F Message Store Properties [MS-OXCSTOR] section 2.2.2.1.1.8 0x661C001F
781 PidTagManagerName Contains the name of the mail user’s manager. 0x3A4E PtypString, 0x001F PtypString 0x001F Address Properties [MS-OXOCNTC] section 2.2.1.6.6 0x3A4E001F
782 PidTagMappingSignature A 16-byte constant that is present on all Address Book objects, but is not present on objects in an offline address book. 0x0FF8 PtypBinary, 0x0102 PtypBinary 0x0102 Miscellaneous Properties [MS-OXOABK] section 2.2.3.32 0x0FF80102
783 PidTagMaximumSubmitMessageSize Maximum size, in kilobytes, of a message that a user is allowed to submit for transmission to another user. 0x666D PtypInteger32, 0x0003 PtypInteger32 0x0003 Message Store Properties [MS-OXCSTOR] section 2.2.2.1.1.2 0x666D0003
784 PidTagMemberId Contains a unique identifier that the messaging server generates for each user. 0x6671 PtypInteger64, 0x0014 PtypInteger64 0x0014 Access Control Properties [MS-OXCPERM] section 2.2.5 0x66710014
785 PidTagMemberName Contains the user-readable name of the user. 0x6672 PtypString, 0x001F PtypString 0x001F Access Control Properties [MS-OXCPERM] section 2.2.6 0x6672001F
786 PidTagMemberRights Contains the permissions for the specified user. 0x6673 PtypInteger32, 0x0003 PtypInteger32 0x0003 Access Control Properties [MS-OXCPERM] section 2.2.7 0x66730003
787 PidTagMessageAttachments Identifies all attachments to the current message. 0x0E13 PtypObject, 0x000D PtypObject 0x000D Message Attachment Properties [MS-OXCMSG] section 2.2.1.52 0x0E13000D
788 PidTagMessageCcMe 0x0058 PtypBoolean, 0x000B PtypBoolean 0x000B General Message Properties [MS-OXOMSG] section 2.2.1.18 0x0058000B
789 PidTagMessageClass Denotes the specific type of the Message object. 0x001A PtypString, 0x001F PtypString 0x001F Common Property set [MS-OXCMSG] section 2.2.1.3 0x001A001F
790 PidTagMessageCodepage Specifies the code page used to encode the non-Unicode string properties on this Message object. 0x3FFD PtypInteger32, 0x0003 PtypInteger32 0x0003 Common [MS-OXCMSG] section 2.2.1.4 0x3FFD0003
791 PidTagMessageDeliveryTime Specifies the time (in UTC) when the server received the message. 0x0E06 PtypTime, 0x0040 PtypTime 0x0040 Message Time Properties [MS-OXOMSG] section 2.2.3.9 0x0E060040
792 PidTagMessageEditorFormat Specifies the format that an email editor can use for editing the message body. 0x5909 PtypInteger32, 0x0003 PtypInteger32 0x0003 Miscellaneous Properties [MS-OXOMSG] section 2.2.1.78 0x59090003
793 PidTagMessageFlags Specifies the status of the Message object. 0x0E07 PtypInteger32, 0x0003 PtypInteger32 0x0003 General Message Properties [MS-OXCMSG] section 2.2.1.6 0x0E070003
794 PidTagMessageHandlingSystemCommonName Contains the common name of a messaging user for use in a message header. 0x3A0F PtypString, 0x001F PtypString 0x001F Address Properties [MS-OXOABK] section 2.2.4.33 0x3A0F001F
795 PidTagMessageLocaleId Contains the Windows Locale ID of the end-user who created this message. 0x3FF1 PtypInteger32, 0x0003 PtypInteger32 0x0003 Miscellaneous Properties [MS-OXCMSG] section 2.2.1.5 0x3FF10003
796 PidTagMessageRecipientMe Indicates that the receiving mailbox owner is a primary or a carbon copy (Cc) recipient of this email message. 0x0059 PtypBoolean, 0x000B PtypBoolean 0x000B General Message Properties [MS-OXOMSG] section 2.2.1.19 0x0059000B
797 PidTagMessageRecipients Identifies all of the recipients of the current message. 0x0E12 PtypObject, 0x000D PtypObject 0x000D Address Properties [MS-OXCMSG] section 2.2.1.47 0x0E12000D
798 PidTagMessageSize Contains the size, in bytes, consumed by the Message object on the server. 0x0E08 PtypInteger32, 0x0003 PtypInteger32 0x0003 General Message Properties [MS-OXCFOLD] section 2.2.2.2.1.10 0x0E080003
799 PidTagMessageSizeExtended Specifies the 64-bit version of the PidTagMessageSize property (section 2.798). 0x0E08 PtypInteger64, 0x0014 PtypInteger64 0x0014 General Message Properties [MS-OXCFOLD] section 2.2.2.2.1.11 0x0E080014
800 PidTagMessageStatus Specifies the status of a message in a contents table. 0x0E17 PtypInteger32, 0x0003 PtypInteger32 0x0003 General Message Properties [MS-OXCMSG] section 2.2.1.8 0x0E170003
801 PidTagMessageSubmissionId Contains a message identifier assigned by a message transfer agent. 0x0047 PtypBinary, 0x0102 PtypBinary 0x0102 Email [MS-OXOMSG] section 2.2.1.79 0x00470102
802 PidTagMessageToMe Indicates that the receiving mailbox owner is one of the primary recipients of this email message. 0x0057 PtypBoolean, 0x000B PtypBoolean 0x000B General Message Properties [MS-OXOMSG] section 2.2.1.17 0x0057000B
803 PidTagMid Contains a value that contains the MID of the message currently being synchronized. 0x674A PtypInteger64, 0x0014 PtypInteger64 0x0014 ID Properties [MS-OXCFXICS] section 2.2.1.2.1 0x674A0014
804 PidTagMiddleName Specifies the middle name(s) of the contact. 0x3A44 PtypString, 0x001F PtypString 0x001F Address Properties [MS-OXOCNTC] section 2.2.1.1.5 0x3A44001F
805 PidTagMimeSkeleton Contains the top-level MIME message headers, all MIME message body part headers, and body part content that is not already converted to Message object properties, including attachments. 0x64F0 PtypBinary, 0x0102 PtypBinary 0x0102 MIME properties [MS-OXCMSG] section 2.2.1.28 0x64F00102
806 PidTagMobileTelephoneNumber Contains the mail user’s cellular telephone number. 0x3A1C PtypString, 0x001F PtypString 0x001F Address Properties [MS-OXOABK] section 2.2.4.27 0x3A1C001F
807 PidTagNativeBody Indicates the best available format for storing the message body. 0x1016 PtypInteger32, 0x0003 PtypInteger32 0x0003 BestBody [MS-OXCMSG] section 2.2.1.58.2 0x10160003
808 PidTagNextSendAcct Specifies the server that a client is currently attempting to use to send email. 0x0E29 PtypString, 0x001F PtypString 0x001F Outlook Application [MS-OXOMSG] section 2.2.1.65 0x0E29001F
809 PidTagNickname Contains the mail user’s nickname. 0x3A4F PtypString, 0x001F PtypString 0x001F Address Properties [MS-OXOCNTC] section 2.2.1.1.1 0x3A4F001F
810 PidTagNonDeliveryReportDiagCode Contains the diagnostic code for a delivery status notification, as specified in [RFC3464]. 0x0C05 PtypInteger32, 0x0003 PtypInteger32 0x0003 Email [MS-OXOMSG] section 2.2.2.30 0x0C050003
811 PidTagNonDeliveryReportReasonCode Contains an integer value that indicates a reason for delivery failure. 0x0C04 PtypInteger32, 0x0003 PtypInteger32 0x0003 Email [MS-OXOMSG] section 2.2.2.31 0x0C040003
812 PidTagNonDeliveryReportStatusCode Contains the value of the Status field for a delivery status notification, as specified in [RFC3464]. 0x0C20 PtypInteger32, 0x0003 PtypInteger32 0x0003 Email [MS-OXOMSG] section 2.2.2.32 0x0C200003
813 Specifies whether the client sends a non-read receipt. 0x0C06 PtypBoolean, 0x000B PtypBoolean 0x000B Email [MS-OXOMSG] section 2.2.1.31 0x0C06000B
814 PidTagNormalizedSubject Contains the normalized subject of the message. 0x0E1D PtypString, 0x001F PtypString 0x001F Email [MS-OXCMSG] section 2.2.1.10 0x0E1D001F
815 PidTagObjectType Indicates the type of Server object. 0x0FFE PtypInteger32, 0x0003 PtypInteger32 0x0003 Common [MS-OXCPRPT] section 2.2.1.7 0x0FFE0003
816 PidTagOfficeLocation Contains the mail user’s office location. 0x3A19 PtypString, 0x001F PtypString 0x001F Address Properties [MS-OXOABK] section 2.2.4.5 0x3A19001F
817 PidTagOfflineAddressBookContainerGuid A string-formatted GUID that represents the address list container object. 0x6802 PtypString8, 0x001E PtypString8 0x001E Offline Address Book Properties [MS-OXOAB] section 2.12.1 0x6802001E
818 PidTagOfflineAddressBookDistinguishedName Contains the DN of the address list that is contained in the OAB message. 0x6804 PtypString8, 0x001E PtypString8 0x001E Offline Address Book Properties [MS-OXOAB] section 2.12.2 0x6804001E
819 PidTagOfflineAddressBookMessageClass Contains the message class for full OAB messages. 0x6803 PtypInteger32, 0x0003 PtypInteger32 0x0003 Offline Address Book Properties [MS-OXPFOAB] section 2.2.2.1.1 0x68030003
820 PidTagOfflineAddressBookName Contains the display name of the address list. 0x6800 PtypString, 0x001F PtypString 0x001F Offline Address Book Properties [MS-OXOAB] section 2.12.3 0x6800001F
821 PidTagOfflineAddressBookSequence Contains the sequence number of the OAB. 0x6801 PtypInteger32, 0x0003 PtypInteger32 0x0003 Offline Address Book Properties [MS-OXOAB] section 2.12.4 0x68010003
822 PidTagOfflineAddressBookTruncatedProperties Contains a list of the property tags that have been truncated or limited by the server. 0x6805 PtypMultipleInteger32, 0x1003 PtypMultipleInteger32 0x1003 Offline Address Book Properties [MS-OXOAB] section 2.9.2.2 0x68051003
823 PidTagOrdinalMost Contains a positive number whose negative is less than or equal to the value of the PidLidTaskOrdinal property (section 2.327) of all of the Task objects in the folder. 0x36E2 PtypInteger32, 0x0003 PtypInteger32 0x0003 Tasks [MS-OXOTASK] section 2.2.1.1 0x36E20003
824 PidTagOrganizationalIdNumber Contains an identifier for the mail user used within the mail user’s organization. 0x3A10 PtypString, 0x001F PtypString 0x001F Address Properties [MS-OXOCNTC] section 2.2.1.10.7 0x3A10001F
825 PidTagOriginalAuthorEntryId Contains an address book EntryID structure ([MS-OXCDATA] section 2.2.5.2) and is defined in report messages to identify the user who sent the original message. 0x004C PtypBinary, 0x0102 PtypBinary 0x0102 Email [MS-OXOMSG] section 2.2.1.32 0x004C0102
826 PidTagOriginalAuthorName Contains the display name of the sender of the original message referenced by a report message. 0x004D PtypString, 0x001F PtypString 0x001F Email [MS-OXOMSG] section 2.2.1.33 0x004D001F
827 PidTagOriginalDeliveryTime Contains the delivery time, in UTC, from the original message. 0x0055 PtypTime, 0x0040 PtypTime 0x0040 General Message Properties [MS-OXOMSG] section 2.2.2.2 0x00550040
828 PidTagOriginalDisplayBcc Contains the value of the PidTagDisplayBcc property (section 2.675) from the original message. 0x0072 PtypString, 0x001F PtypString 0x001F General Message Properties [MS-OXOMSG] section 2.2.2.5 0x0072001F
829 PidTagOriginalDisplayCc Contains the value of the PidTagDisplayCc property(section 2.676) from the original message. 0x0073 PtypString, 0x001F PtypString 0x001F General Message Properties [MS-OXOMSG] section 2.2.2.4 0x0073001F
830 PidTagOriginalDisplayTo Contains the value of the PidTagDisplayTo property (section 2.679) from the original message. 0x0074 PtypString, 0x001F PtypString 0x001F General Message Properties [MS-OXOMSG] section 2.2.2.3 0x0074001F
831 PidTagOriginalEntryId Contains the original EntryID of an object. 0x3A12 PtypBinary, 0x0102 PtypBinary 0x0102 General Message Properties [MS-OXCFXICS] section 2.2.1.2.9 0x3A120102
832 PidTagOriginalMessageClass Designates the PidTagMessageClass property ([MS-OXCMSG] section 2.2.1.3) from the original message. 0x004B PtypString, 0x001F PtypString 0x001F Secure Messaging Properties [MS-OXOMSG] section 2.2.1.86 0x004B001F
833 PidTagOriginalMessageId Contains the message ID of the original message included in replies or resent messages. 0x1046 PtypString, 0x001F PtypString 0x001F Mail [MS-OXOMSG] section 2.2.1.85 0x1046001F
834 PidTagOriginalSenderAddressType Contains the value of the original message sender’s PidTagSenderAddressType property (section 2.1002). 0x0066 PtypString, 0x001F PtypString 0x001F General Message Properties [MS-OXOMSG] section 2.2.2.6 0x0066001F
835 PidTagOriginalSenderEmailAddress Contains the value of the original message sender’s PidTagSenderEmailAddress property (section 2.1003). 0x0067 PtypString, 0x001F PtypString 0x001F General Message Properties [MS-OXOMSG] section 2.2.2.7 0x0067001F
836 PidTagOriginalSenderEntryId Contains an address book EntryID that is set on delivery report messages. 0x005B PtypBinary, 0x0102 PtypBinary 0x0102 General Message Properties [MS-OXOMSG] section 2.2.2.8 0x005B0102
837 PidTagOriginalSenderName Contains the value of the original message sender’s PidTagSenderName property (section 2.1006), and is set on delivery report messages. 0x005A PtypString, 0x001F PtypString 0x001F General Message Properties [MS-OXOMSG] section 2.2.2.9 0x005A001F
838 PidTagOriginalSenderSearchKey Contains an address book search key set on the original email message. 0x005C PtypBinary, 0x0102 PtypBinary 0x0102 General Message Properties [MS-OXOMSG] section 2.2.2.10 0x005C0102
839 PidTagOriginalSensitivity Contains the sensitivity value of the original email message. 0x002E PtypInteger32, 0x0003 PtypInteger32 0x0003 General Message Properties [MS-OXOMSG] section 2.2.1.22 0x002E0003
840 PidTagOriginalSentRepresentingAddressType Contains the address type of the end user who is represented by the original email message sender. 0x0068 PtypString, 0x001F PtypString 0x001F General Message Properties [MS-OXOMSG] section 2.2.2.11 0x0068001F
841 PidTagOriginalSentRepresentingEmailAddress Contains the email address of the end user who is represented by the original email message sender. 0x0069 PtypString, 0x001F PtypString 0x001F General Message Properties [MS-OXOMSG] section 2.2.2.12 0x0069001F
842 PidTagOriginalSentRepresentingEntryId Identifies an address book EntryID that contains the entry identifier of the end user who is represented by the original message sender. 0x005E PtypBinary, 0x0102 PtypBinary 0x0102 General Message Properties [MS-OXOMSG] section 2.2.2.13 0x005E0102
843 PidTagOriginalSentRepresentingName Contains the display name of the end user who is represented by the original email message sender. 0x005D PtypString, 0x001F PtypString 0x001F General Message Properties [MS-OXOMSG] section 2.2.2.14 0x005D001F
844 PidTagOriginalSentRepresentingSearchKey Identifies an address book search key that contains the SearchKey of the end user who is represented by the original message sender. 0x005F PtypBinary, 0x0102 PtypBinary 0x0102 General Message Properties [MS-OXOMSG] section 2.2.2.15 0x005F0102
845 PidTagOriginalSubject Specifies the subject of the original message. 0x0049 PtypString, 0x001F PtypString 0x001F General Message Properties [MS-OXOMSG] section 2.2.2.16 0x0049001F
846 PidTagOriginalSubmitTime Specifies the original email message’s submission date and time, in UTC. 0x004E PtypTime, 0x0040 PtypTime 0x0040 General Message Properties [MS-OXOMSG] section 2.2.2.17 0x004E0040
847 PidTagOriginatorDeliveryReportRequested Indicates whether an email sender requests an email delivery receipt from the messaging system. 0x0023 PtypBoolean, 0x000B PtypBoolean 0x000B MIME Properties [MS-OXOMSG] section 2.2.1.20 0x0023000B
848 PidTagOriginatorNonDeliveryReportRequested Specifies whether an email sender requests suppression of nondelivery receipts. 0x0C08 PtypBoolean, 0x000B PtypBoolean 0x000B MIME Properties [MS-OXOMSG] section 2.2.1.21 0x0C08000B
849 PidTagOscSyncEnabled Specifies whether contact synchronization with an external source is handled by the server. 0x7C24 PtypBoolean, 0x000B PtypBoolean 0x000B Contact Properties [MS-OXOCNTC] section 2.2.1.9.7 0x7C24000B
850 PidTagOtherAddressCity Contains the name of the mail user’s other locality, such as the town or city. 0x3A5F PtypString, 0x001F PtypString 0x001F Address Properties [MS-OXOCNTC] section 2.2.1.3.2 0x3A5F001F
851 PidTagOtherAddressCountry Contains the name of the mail user’s other country/region. 0x3A60 PtypString, 0x001F PtypString 0x001F Address Properties [MS-OXOCNTC] section 2.2.1.3.5 0x3A60001F
852 PidTagOtherAddressPostalCode Contains the postal code for the mail user’s other postal address. 0x3A61 PtypString, 0x001F PtypString 0x001F Address Properties [MS-OXOCNTC] section 2.2.1.3.4 0x3A61001F
853 PidTagOtherAddressPostOfficeBox Contains the number or identifier of the mail user’s other post office box. 0x3A64 PtypString, 0x001F PtypString 0x001F Address Properties [MS-OXOCNTC] section 2.2.1.3.7 0x3A64001F
854 PidTagOtherAddressStateOrProvince Contains the name of the mail user’s other state or province. 0x3A62 PtypString, 0x001F PtypString 0x001F Address Properties [MS-OXOCNTC] section 2.2.1.3.3 0x3A62001F
855 PidTagOtherAddressStreet Contains the mail user’s other street address. 0x3A63 PtypString, 0x001F PtypString 0x001F Address Properties [MS-OXOCNTC] section 2.2.1.3.1 0x3A63001F
856 PidTagOtherTelephoneNumber Contains an alternate telephone number for the mail user. 0x3A1F PtypString, 0x001F PtypString 0x001F Address Properties [MS-OXOCNTC] section 2.2.1.4.10 0x3A1F001F
857 PidTagOutOfOfficeState Indicates whether the user is OOF. 0x661D PtypBoolean, 0x000B PtypBoolean 0x000B Message Store Properties [MS-OXCSTOR] section 2.2.2.1.2.4 0x661D000B
858 PidTagOwnerAppointmentId Specifies a quasi-unique value among all of the Calendar objects in a user’s mailbox. 0x0062 PtypInteger32, 0x0003 PtypInteger32 0x0003 Appointment [MS-OXOCAL] section 2.2.1.29 0x00620003
859 PidTagPagerTelephoneNumber Contains the mail user’s pager telephone number. 0x3A21 PtypString, 0x001F PtypString 0x001F Address Properties [MS-OXOABK] section 2.2.4.28 0x3A21001F
860 PidTagParentEntryId Contains the EntryID of the folder where messages or subfolders reside. 0x0E09 PtypBinary, 0x0102 PtypBinary 0x0102 ID Properties [MS-OXCFOLD] section 2.2.2.2.1.7 0x0E090102
861 PidTagParentFolderId Contains a value that contains the Folder ID (FID), as specified in [MS-OXCDATA] section 2.2.1.1, that identifies the parent folder of the messaging object being synchronized. 0x6749 PtypInteger64, 0x0014 PtypInteger64 0x0014 ID Properties [MS-OXCFXICS] section 2.2.1.2.4 0x67490014
862 PidTagParentKey Contains the search key that is used to correlate the original message and the reports about the original message. 0x0025 PtypBinary, 0x0102 PtypBinary 0x0102 MapiEnvelope [MS-OXOMSG] section 2.2.2.18 0x00250102
863 PidTagParentSourceKey Contains a value on a folder that contains the PidTagSourceKey property (section 2.1024) of the parent folder. 0x65E1 PtypBinary, 0x0102 PtypBinary 0x0102 ExchangeNonTransmittableReserved [MS-OXCFXICS] section 2.2.1.2.6 0x65E10102
864 PidTagPersonalHomePage Contains the URL of the mail user’s personal home page. 0x3A50 PtypString, 0x001F PtypString 0x001F MapiMailUser [MS-OXOCNTC] section 2.2.1.10.13 0x3A50001F
865 PidTagPolicyTag Specifies the GUID of a retention tag. 0x3019 PtypBinary, 0x0102 PtypBinary 0x0102 Archive [MS-OXCMSG] section 2.2.1.60.2 0x30190102
866 PidTagPostalAddress Contains the mail user’s postal address. 0x3A15 PtypString, 0x001F PtypString 0x001F MapiMailUser [MS-OXOCNTC] section 2.2.1.3.8 0x3A15001F
867 PidTagPostalCode Contains the postal code for the mail user’s postal address. 0x3A2A PtypString, 0x001F PtypString 0x001F MapiMailUser [MS-OXOABK] section 2.2.4.18 0x3A2A001F
868 PidTagPostOfficeBox Contains the number or identifier of the mail user’s post office box. 0x3A2B PtypString, 0x001F PtypString 0x001F MapiMailUser [MS-OXOABK] section 2.2.4.15 0x3A2B001F
869 PidTagPredecessorChangeList Contains a value that contains a serialized representation of a PredecessorChangeList structure. 0x65E3 PtypBinary, 0x0102 PtypBinary 0x0102 Sync [MS-OXCFXICS] section 2.2.1.2.8 0x65E30102
870 PidTagPrimaryFaxNumber Contains the telephone number of the mail user’s primary fax machine. 0x3A23 PtypString, 0x001F PtypString 0x001F MapiMailUser [MS-OXOABK] section 2.2.4.29 0x3A23001F
871 PidTagPrimarySendAccount Specifies the first server that a client is to use to send the email with. 0x0E28 PtypString, 0x001F PtypString 0x001F MapiNonTransmittable [MS-OXOMSG] section 2.2.1.64 0x0E28001F
872 PidTagPrimaryTelephoneNumber Contains the mail user’s primary telephone number. 0x3A1A PtypString, 0x001F PtypString 0x001F MapiMailUser [MS-OXOCNTC] section 2.2.1.4.5 0x3A1A001F
873 PidTagPriority Indicates the client’s request for the priority with which the message is to be sent by the messaging system. 0x0026 PtypInteger32, 0x0003 PtypInteger32 0x0003 Email [MS-OXCMSG] section 2.2.1.12 0x00260003
874 PidTagProcessed Indicates whether a client has already processed a received task communication. 0x7D01 PtypBoolean, 0x000B PtypBoolean 0x000B Calendar [MS-OXOCAL] section 2.2.5.7 0x7D01000B
875 PidTagProfession Contains the name of the mail user’s line of business. 0x3A46 PtypString, 0x001F PtypString 0x001F MapiMailUser [MS-OXOCNTC] section 2.2.1.6.9 0x3A46001F
876 PidTagProhibitReceiveQuota Maximum size, in kilobytes, that a user is allowed to accumulate in their mailbox before no further email will be delivered to their mailbox. 0x666A PtypInteger32, 0x0003 PtypInteger32 0x0003 Exchange Administrative [MS-OXCSTOR] section 2.2.2.1.1.3 0x666A0003
877 PidTagProhibitSendQuota Maximum size, in kilobytes, that a user is allowed to accumulate in their mailbox before the user can no longer send any more email. 0x666E PtypInteger32, 0x0003 PtypInteger32 0x0003 ExchangeAdministrative [MS-OXCSTOR] section 2.2.2.1.1.4 0x666E0003
878 PidTagPurportedSenderDomain Contains the domain responsible for transmitting the current message. 0x4083 PtypString, 0x001F PtypString 0x001F TransportEnvelope [MS-OXCMSG] section 2.2.1.43 0x4083001F
879 PidTagRadioTelephoneNumber Contains the mail user’s radio telephone number. 0x3A1D PtypString, 0x001F PtypString 0x001F MapiMailUser [MS-OXOCNTC] section 2.2.1.4.8 0x3A1D001F
880 PidTagRead Indicates whether a message has been read. 0x0E69 PtypBoolean, 0x000B PtypBoolean 0x000B MapiNonTransmittable Property set [MS-OXCMSG] section 2.2.1.53 0x0E69000B
881 PidTagReadReceiptAddressType Contains the address type of the end user to whom a read receipt is directed. 0x4029 PtypString, 0x001F PtypString 0x001F Transport Envelope [MS-OXOMSG] section 2.2.2.24 0x4029001F
882 PidTagReadReceiptEmailAddress Contains the email address of the end user to whom a read receipt is directed. 0x402A PtypString, 0x001F PtypString 0x001F Transport Envelope [MS-OXOMSG] section 2.2.2.25 0x402A001F
883 PidTagReadReceiptEntryId Contains an address book EntryID. 0x0046 PtypBinary, 0x0102 PtypBinary 0x0102 MapiEnvelope [MS-OXOMSG] section 2.2.2.26 0x00460102
884 PidTagReadReceiptName Contains the display name for the end user to whom a read receipt is directed. 0x402B PtypString, 0x001F PtypString 0x001F Transport Envelope [MS-OXOMSG] section 2.2.2.27 0x402B001F
885 PidTagReadReceiptRequested Specifies whether the email sender requests a read receipt from all recipients when this email message is read or opened. 0x0029 PtypBoolean, 0x000B PtypBoolean 0x000B Email [MS-OXOMSG] section 2.2.1.29 0x0029000B
886 PidTagReadReceiptSearchKey Contains an address book search key. 0x0053 PtypBinary, 0x0102 PtypBinary 0x0102 MapiEnvelope [MS-OXOMSG] section 2.2.2.28 0x00530102
887 PidTagReadReceiptSmtpAddress Contains the SMTP email address of the user to whom a read receipt is directed. 0x5D05 PtypString, 0x001F PtypString 0x001F Mail [MS-OXOMSG] section 2.2.1.30 0x5D05001F
888 PidTagReceiptTime Contains the sent time for a message disposition notification, as specified in [RFC3798]. 0x002A PtypTime, 0x0040 PtypTime 0x0040 Email [MS-OXOMSG] section 2.2.2.33 0x002A0040
889 PidTagReceivedByAddressType Contains the email message receiver’s email address type. 0x0075 PtypString, 0x001F PtypString 0x001F MapiEnvelope [MS-OXOMSG] section 2.2.1.36 0x0075001F
890 PidTagReceivedByEmailAddress Contains the email message receiver’s email address. 0x0076 PtypString, 0x001F PtypString 0x001F Address Properties [MS-OXOMSG] section 2.2.1.37 0x0076001F
891 PidTagReceivedByEntryId Contains the address book EntryID of the mailbox receiving the Email object. 0x003F PtypBinary, 0x0102 PtypBinary 0x0102 Address Properties [MS-OXOMSG] section 2.2.1.38 0x003F0102
892 PidTagReceivedByName Contains the email message receiver’s display name. 0x0040 PtypString, 0x001F PtypString 0x001F Address Properties [MS-OXOMSG] section 2.2.1.39 0x0040001F
893 PidTagReceivedBySearchKey Identifies an address book search key that contains a binary-comparable key that is used to identify correlated objects for a search. 0x0051 PtypBinary, 0x0102 PtypBinary 0x0102 Address Properties [MS-OXOMSG] section 2.2.1.40 0x00510102
894 PidTagReceivedBySmtpAddress Contains the email message receiver’s SMTP email address. 0x5D07 PtypString, 0x001F PtypString 0x001F Mail [MS-OXOMSG] section 2.2.1.41 0x5D07001F
895 PidTagReceivedRepresentingAddressType Contains the email address type for the end user represented by the receiving mailbox owner. 0x0077 PtypString, 0x001F PtypString 0x001F Address Properties [MS-OXOMSG] section 2.2.1.23 0x0077001F
896 PidTagReceivedRepresentingEmailAddress Contains the email address for the end user represented by the receiving mailbox owner. 0x0078 PtypString, 0x001F PtypString 0x001F Address Properties [MS-OXOMSG] section 2.2.1.24 0x0078001F
897 PidTagReceivedRepresentingEntryId Contains an address book EntryID that identifies the end user represented by the receiving mailbox owner. 0x0043 PtypBinary, 0x0102 PtypBinary 0x0102 Address Properties [MS-OXOMSG] section 2.2.1.25 0x00430102
898 PidTagReceivedRepresentingName Contains the display name for the end user represented by the receiving mailbox owner. 0x0044 PtypString, 0x001F PtypString 0x001F Address Properties [MS-OXOMSG] section 2.2.1.26 0x0044001F
899 PidTagReceivedRepresentingSearchKey Identifies an address book search key that contains a binary-comparable key of the end user represented by the receiving mailbox owner. 0x0052 PtypBinary, 0x0102 PtypBinary 0x0102 Address Properties [MS-OXOMSG] section 2.2.1.27 0x00520102
900 PidTagReceivedRepresentingSmtpAddress Contains the SMTP email address of the user represented by the receiving mailbox owner. 0x5D08 PtypString, 0x001F PtypString 0x001F Mail [MS-OXOMSG] section 2.2.1.28 0x5D08001F
901 PidTagRecipientDisplayName Specifies the display name of the recipient. 0x5FF6 PtypString, 0x001F PtypString 0x001F TransportRecipient [MS-OXCMSG] section 2.2.1.54 0x5FF6001F
902 PidTagRecipientEntryId Identifies an Address Book object that specifies the recipient. 0x5FF7 PtypBinary, 0x0102 PtypBinary 0x0102 ID Properties [MS-OXCMSG] section 2.2.1.55 0x5FF70102
903 PidTagRecipientFlags Specifies a bit field that describes the recipient status. 0x5FFD PtypInteger32, 0x0003 PtypInteger32 0x0003 TransportRecipient [MS-OXOCAL] section 2.2.4.10.1 0x5FFD0003
904 PidTagRecipientOrder Specifies the location of the current recipient in the recipient table. 0x5FDF PtypInteger32, 0x0003 PtypInteger32 0x0003 TransportRecipient [MS-OXCMSG] section 2.2.1.40 0x5FDF0003
905 PidTagRecipientProposed Indicates that the attendee proposed a new date and/or time. 0x5FE1 PtypBoolean, 0x000B PtypBoolean 0x000B TransportRecipient [MS-OXOCAL] section 2.2.4.10.4 0x5FE1000B
906 PidTagRecipientProposedEndTime Indicates the meeting end time requested by the attendee in a counter proposal. 0x5FE4 PtypTime, 0x0040 PtypTime 0x0040 TransportRecipient [MS-OXOCAL] section 2.2.4.10.6 0x5FE40040
907 PidTagRecipientProposedStartTime Indicates the meeting start time requested by the attendee in a counter proposal. 0x5FE3 PtypTime, 0x0040 PtypTime 0x0040 TransportRecipient [MS-OXOCAL] section 2.2.4.10.5 0x5FE30040
908 PidTagRecipientReassignmentProhibited Specifies whether adding additional or different recipients is prohibited for the email message when forwarding the email message. 0x002B PtypBoolean, 0x000B PtypBoolean 0x000B MapiEnvelope [MS-OXOMSG] section 2.2.1.42 0x002B000B
909 PidTagRecipientTrackStatus Indicates the response status that is returned by the attendee. 0x5FFF PtypInteger32, 0x0003 PtypInteger32 0x0003 TransportRecipient [MS-OXOCAL] section 2.2.4.10.2 0x5FFF0003
910 PidTagRecipientTrackStatusTime Indicates the date and time at which the attendee responded. 0x5FFB PtypTime, 0x0040 PtypTime 0x0040 TransportRecipient [MS-OXOCAL] section 2.2.4.10.3 0x5FFB0040
911 PidTagRecipientType Represents the recipient type of a recipient on the message. 0x0C15 PtypInteger32, 0x0003 PtypInteger32 0x0003 MapiRecipient [MS-OXOMSG] section 2.2.3.1 0x0C150003
912 PidTagRecordKey Contains a unique binary-comparable identifier for a specific object. 0x0FF9 PtypBinary, 0x0102 PtypBinary 0x0102 ID Properties [MS-OXCPRPT] section 2.2.1.8 0x0FF90102
913 PidTagReferredByName Contains the name of the mail user’s referral. 0x3A47 PtypString, 0x001F PtypString 0x001F MapiMailUser [MS-OXOCNTC] section 2.2.1.10.21 0x3A47001F
914 PidTagRemindersOnlineEntryId Contains an EntryID for the Reminders folder. 0x36D5 PtypBinary, 0x0102 PtypBinary 0x0102 MapiContainer [MS-OXOSFLD] section 2.2.3 0x36D50102
915 PidTagRemoteMessageTransferAgent Contains the value of the Remote-MTA field for a delivery status notification, as specified in [RFC3464]. 0x0C21 PtypString, 0x001F PtypString 0x001F Email [MS-OXOMSG] section 2.2.2.34 0x0C21001F
916 PidTagRenderingPosition Represents an offset, in rendered characters, to use when rendering an attachment within the main message text. 0x370B PtypInteger32, 0x0003 PtypInteger32 0x0003 MapiAttachment [MS-OXCMSG] section 2.2.2.16 0x370B0003
917 PidTagReplyRecipientEntries Identifies a FlatEntryList structure ([MS-OXCDATA] section 2.3.3) of address book EntryIDs for recipients that are to receive a reply. 0x004F PtypBinary, 0x0102 PtypBinary 0x0102 MapiEnvelope [MS-OXOMSG] section 2.2.1.43 0x004F0102
918 PidTagReplyRecipientNames Contains a list of display names for recipients that are to receive a reply. 0x0050 PtypString, 0x001F PtypString 0x001F MapiEnvelope [MS-OXOMSG] section 2.2.1.44 0x0050001F
919 PidTagReplyRequested Indicates whether a reply is requested to a Message object. 0x0C17 PtypBoolean, 0x000B PtypBoolean 0x000B MapiRecipient [MS-OXOMSG] section 2.2.1.45 0x0C17000B
920 PidTagReplyTemplateId Contains the value of the GUID that points to a Reply template. 0x65C2 PtypBinary, 0x0102 PtypBinary 0x0102 Rules [MS-OXORULE] section 2.2.9.2 0x65C20102
921 PidTagReplyTime Specifies the time, in UTC, that the sender has designated for an associated work item to be due. 0x0030 PtypTime, 0x0040 PtypTime 0x0040 MapiEnvelope [MS-OXOFLAG] section 2.2.3.1 0x00300040
922 PidTagReportDisposition Contains a string indicating whether the original message was displayed to the user or deleted (report messages only). 0x0080 PtypString, 0x001F PtypString 0x001F Email [MS-OXOMSG] section 2.2.1.34 0x0080001F
923 PidTagReportDispositionMode Contains a description of the action that a client has performed on behalf of a user (report messages only). 0x0081 PtypString, 0x001F PtypString 0x001F Email [MS-OXOMSG] section 2.2.1.35 0x0081001F
924 PidTagReportEntryId Specifies an entry ID that identifies the application that generated a report message. 0x0045 PtypBinary, 0x0102 PtypBinary 0x0102 MapiEnvelope [MS-OXOMSG] section 2.2.1.45 0x00450102
925 PidTagReportingMessageTransferAgent Contains the value of the Reporting-MTA field for a delivery status notification, as specified in [RFC3464]. 0x6820 PtypString, 0x001F PtypString 0x001F Email [MS-OXOMSG] section 2.2.2.35 0x6820001F
926 PidTagReportName Contains the display name for the entity (usually a server agent) that generated the report message. 0x003A PtypString, 0x001F PtypString 0x001F MapiEnvelope [MS-OXOMSG] section 2.2.2.20 0x003A001F
927 PidTagReportSearchKey Contains an address book search key representing the entity (usually a server agent) that generated the report message. 0x0054 PtypBinary, 0x0102 PtypBinary 0x0102 MapiEnvelope [MS-OXOMSG] section 2.2.2.21 0x00540102
928 PidTagReportTag Contains the data that is used to correlate the report and the original message. 0x0031 PtypBinary, 0x0102 PtypBinary 0x0102 MapiEnvelope [MS-OXOMSG] section 2.2.2.22 0x00310102
929 PidTagReportText Contains the optional text for a report message. 0x1001 PtypString, 0x001F PtypString 0x001F MapiMessage [MS-OXOMSG] section 2.2.2.23 0x1001001F
930 PidTagReportTime Indicates the last time that the contact list that is controlled by the PidTagJunkIncludeContacts property (section 2.760) was updated. 0x0032 PtypTime, 0x0040 PtypTime 0x0040 MapiEnvelope Property set [MS-OXCSPAM] section 2.2.2.6 0x00320040
931 PidTagResolveMethod Specifies how to resolve any conflicts with the message. 0x3FE7 PtypInteger32, 0x0003 PtypInteger32 0x0003 MapiStatus [MS-OXCFXICS] section 2.2.1.4.1 0x3FE70003
932 PidTagResponseRequested Indicates whether a response is requested to a Message object. 0x0063 PtypBoolean, 0x000B PtypBoolean 0x000B MapiEnvelope Property set [MS-OXOMSG] section 2.2.1.46 0x0063000B
933 PidTagResponsibility Specifies whether another mail agent has ensured that the message will be delivered. 0x0E0F PtypBoolean, 0x000B PtypBoolean 0x000B MapiNonTransmittable [MS-OXCMSG] section 2.2.1.37 0x0E0F000B
934 PidTagRetentionDate Specifies the date, in UTC, after which a Message object is expired by the server. 0x301C PtypTime, 0x0040 PtypTime 0x0040 Archive [MS-OXCMSG] section 2.2.1.60.5 0x301C0040
935 PidTagRetentionFlags Contains flags that specify the status or nature of an item’s retention tag or archive tag. 0x301D PtypInteger32, 0x0003 PtypInteger32 0x0003 Archive [MS-OXCMSG] section 2.2.1.60.6 0x301D0003
936 PidTagRetentionPeriod Specifies the number of days that a Message object can remain unarchived. 0x301A PtypInteger32, 0x0003 PtypInteger32 0x0003 Archive [MS-OXCMSG] section 2.2.1.60.3 0x301A0003
937 PidTagRights Specifies a user’s folder permissions. 0x6639 PtypInteger32, 0x0003 PtypInteger32 0x0003 ExchangeFolder [MS-OXCFOLD] section 2.2.2.2.2.8 0x66390003
938 PidTagRoamingDatatypes Contains a bitmask that indicates which stream properties exist on the message. 0x7C06 PtypInteger32, 0x0003 PtypInteger32 0x0003 Configuration [MS-OXOCFG] section 2.2.2.1 0x7C060003
939 PidTagRoamingDictionary Contains a dictionary stream, as specified in [MS-OXOCFG] section 2.2.5.1. 0x7C07 PtypBinary, 0x0102 PtypBinary 0x0102 Configuration [MS-OXOCFG] section 2.2.2.2 0x7C070102
940 PidTagRoamingXmlStream Contains an XML stream, as specified in [MS-OXOCFG] section 2.2.5.2. 0x7C08 PtypBinary, 0x0102 PtypBinary 0x0102 Configuration [MS-OXOCFG] section 2.2.2.3 0x7C080102
941 PidTagRowid Contains a unique identifier for a recipient in a message’s recipient table. 0x3000 PtypInteger32, 0x0003 PtypInteger32 0x0003 MapiCommon [MS-OXCMSG] section 2.2.1.38 0x30000003
942 PidTagRowType Identifies the type of the row. 0x0FF5 PtypInteger32, 0x0003 PtypInteger32 0x0003 MapiNonTransmittable [MS-OXCTABL] section 2.2.1.3 0x0FF50003
943 PidTagRtfCompressed Contains message body text in compressed RTF format. 0x1009 PtypBinary, 0x0102 PtypBinary 0x0102 Email [MS-OXCMSG] section 2.2.1.58.4 0x10090102
944 PidTagRtfInSync Indicates whether the PidTagBody property (section 2.618) and the PidTagRtfCompressed property (section 2.943) contain the same text (ignoring formatting). 0x0E1F PtypBoolean, 0x000B PtypBoolean 0x000B Email [MS-OXCMSG] section 2.2.1.58.5 0x0E1F000B
945 PidTagRuleActionNumber Contains the index of a rule action that failed. 0x6650 PtypInteger32, 0x0003 PtypInteger32 0x0003 ExchangeMessageReadOnly [MS-OXORULE] section 2.2.7.4 0x66500003
946 PidTagRuleActions Contains the set of actions associated with the rule. 0x6680 PtypRuleAction, 0x00FE PtypRuleAction 0x00FE Server-Side Rules Properties [MS-OXORULE] section 2.2.1.3.1.10 0x668000FE
947 PidTagRuleActionType Contains the ActionType field ([MS-OXORULE] section 2.2.5.1) of a rule that failed. 0x6649 PtypInteger32, 0x0003 PtypInteger32 0x0003 ExchangeMessageReadOnly [MS-OXORULE] section 2.2.7.3 0x66490003
948 PidTagRuleCondition Defines the conditions under which a rule action is to be executed. 0x6679 PtypRestriction, 0x00FD PtypRestriction 0x00FD Server-Side Rules Properties [MS-OXORULE] section 2.2.1.3.1.9 0x667900FD
949 PidTagRuleError Contains the error code that indicates the cause of an error encountered during the execution of the rule. 0x6648 PtypInteger32, 0x0003 PtypInteger32 0x0003 ExchangeMessageReadOnly [MS-OXORULE] section 2.2.7.2 0x66480003
950 PidTagRuleFolderEntryId Contains the EntryID of the folder where the rule that triggered the generation of a DAM is stored. 0x6651 PtypBinary, 0x0102 PtypBinary 0x0102 ExchangeMessageReadOnly [MS-OXORULE] section 2.2.6.5 0x66510102
951 PidTagRuleId Specifies a unique identifier that is generated by the messaging server for each rule when the rule is first created. 0x6674 PtypInteger64, 0x0014 PtypInteger64 0x0014 Server-Side Rules Properties [MS-OXORULE] section 2.2.1.3.1.1 0x66740014
952 PidTagRuleIds Contains a buffer that is obtained by concatenating the PidTagRuleId property (section 2.951) values from all of the rules contributing actions that are contained in the PidTagClientActions property (section 2.634). 0x6675 PtypBinary, 0x0102 PtypBinary 0x0102 Server-Side Rules Properties [MS-OXORULE] section 2.2.6.7 0x66750102
953 PidTagRuleLevel Contains 0x00000000. This property is not used. 0x6683 PtypInteger32, 0x0003 PtypInteger32 0x0003 Server-Side Rules Properties [MS-OXORULE] section 2.2.1.3.1.6 0x66830003
954 PidTagRuleMessageLevel Contains 0x00000000. Set on the FAI message. 0x65ED PtypInteger32, 0x0003 PtypInteger32 0x0003 ExchangeNonTransmittableReserved [MS-OXORULE] section 2.2.4.1.6 0x65ED0003
955 PidTagRuleMessageName Specifies the name of the rule. Set on the FAI message. 0x65EC PtypString, 0x001F PtypString 0x001F ExchangeNonTransmittableReserved [MS-OXORULE] section 2.2.4.1.1 0x65EC001F
956 PidTagRuleMessageProvider Identifies the client application that owns the rule. Set on the FAI message. 0x65EB PtypString, 0x001F PtypString 0x001F ExchangeNonTransmittableReserved [MS-OXORULE] section 2.2.4.1.7 0x65EB001F
957 PidTagRuleMessageProviderData Contains opaque data set by the client for the exclusive use of the client. Set on the FAI message. 0x65EE PtypBinary, 0x0102 PtypBinary 0x0102 ExchangeNonTransmittableReserved [MS-OXORULE] section 2.2.4.1.8 0x65EE0102
958 PidTagRuleMessageSequence Contains a value used to determine the order in which rules are evaluated and executed. Set on the FAI message. 0x65F3 PtypInteger32, 0x0003 PtypInteger32 0x0003 ExchangeNonTransmittableReserved [MS-OXORULE] section 2.2.4.1.3 0x65F30003
959 PidTagRuleMessageState Contains flags that specify the state of the rule. Set on the FAI message. 0x65E9 PtypInteger32, 0x0003 PtypInteger32 0x0003 ExchangeNonTransmittableReserved [MS-OXORULE] section 2.2.4.1.4 0x65E90003
960 PidTagRuleMessageUserFlags Contains an opaque property that the client sets for the exclusive use of the client. Set on the FAI message. 0x65EA PtypInteger32, 0x0003 PtypInteger32 0x0003 ExchangeNonTransmittableReserved [MS-OXORULE] section 2.2.4.1.5 0x65EA0003
961 PidTagRuleName Specifies the name of the rule. 0x6682 PtypString, 0x001F PtypString 0x001F Server-Side Rules Properties [MS-OXORULE] section 2.2.1.3.1.4 0x6682001F
962 PidTagRuleProvider A string identifying the client application that owns a rule. 0x6681 PtypString, 0x001F PtypString 0x001F Server-Side Rules Properties [MS-OXORULE] section 2.2.1.3.1.5 0x6681001F
963 PidTagRuleProviderData Contains opaque data set by the client for the exclusive use of the client. 0x6684 PtypBinary, 0x0102 PtypBinary 0x0102 Server-Side Rules Properties [MS-OXORULE] section 2.2.1.3.1.8 0x66840102
964 PidTagRuleSequence Contains a value used to determine the order in which rules are evaluated and executed. 0x6676 PtypInteger32, 0x0003 PtypInteger32 0x0003 Server-Side Rules Properties [MS-OXORULE] section 2.2.1.3.1.2 0x6676 0003
965 PidTagRuleState Contains flags that specify the state of the rule. 0x6677 PtypInteger32, 0x0003 PtypInteger32 0x0003 Server-Side Rules Properties [MS-OXORULE] section 2.2.1.3.1.3 0x66770003
966 PidTagRuleUserFlags Contains an opaque property that the client sets for the exclusive use of the client. 0x6678 PtypInteger32, 0x0003 PtypInteger32 0x0003 Server-Side Rules Properties [MS-OXORULE] section 2.2.1.3.1.7 0x66780003
967 PidTagRwRulesStream Contains additional rule data about the Rule FAI message. 0x6802 PtypBinary, 0x0102 PtypBinary 0x0102 Message Class Defined Transmittable [MS-OXORULE] section 2.2.9.3 0x68020102
968 PidTagScheduleInfoAppointmentTombstone Contains a list of tombstones, where each tombstone represents a Meeting object that has been declined. 0x686A PtypBinary, 0x0102 PtypBinary 0x0102 Free/Busy Properties [MS-OXOCAL] section 2.2.12.5 0x686A0102
969 PidTagScheduleInfoAutoAcceptAppointments Indicates whether a client or server is to automatically respond to all meeting requests for the attendee or resource. 0x686D PtypBoolean, 0x000B PtypBoolean 0x000B Free/Busy Properties [MS-OXOCAL] section 2.2.12.2 0x686D000B
970 PidTagScheduleInfoDelegateEntryIds Specifies the EntryIDs of the delegates. 0x6845 PtypMultipleBinary, 0x1102 PtypMultipleBinary 0x1102 Free/Busy Properties [MS-OXODLGT] section 2.2.2.2.5 0x68451102
971 PidTagScheduleInfoDelegateNames Specifies the names of the delegates. 0x6844 PtypMultipleString, 0x101F PtypMultipleString 0x101F Free/Busy Properties [MS-OXODLGT] section 2.2.2.2.3 0x6844101F
972 PidTagScheduleInfoDelegateNamesW Specifies the names of the delegates in Unicode. 0x684A PtypMultipleString, 0x101F PtypMultipleString 0x101F Free/Busy Properties [MS-OXODLGT] section 2.2.2.2.4 0x684A101F
973 PidTagScheduleInfoDelegatorWantsCopy Indicates whether the delegator wants to receive copies of the meeting-related objects that are sent to the delegate. 0x6842 PtypBoolean, 0x000B PtypBoolean 0x000B Free/Busy Properties [MS-OXODLGT] section 2.2.2.2.1 0x6842000B
974 PidTagScheduleInfoDelegatorWantsInfo Indicates whether the delegator wants to receive informational updates. 0x684B PtypBoolean, 0x000B PtypBoolean 0x000B Free/Busy Properties [MS-OXODLGT] section 2.2.2.2.2 0x684B000B
975 PidTagScheduleInfoDisallowOverlappingAppts Indicates whether a client or server, when automatically responding to meeting requests, is to decline Meeting Request objects that overlap with previously scheduled events. 0x686F PtypBoolean, 0x000B PtypBoolean 0x000B Free/Busy Properties [MS-OXOCAL] section 2.2.12.4 0x686F000B
976 PidTagScheduleInfoDisallowRecurringAppts Indicates whether a client or server, when automatically responding to meeting requests, is to decline Meeting Request objects that represent a recurring series. 0x686E PtypBoolean, 0x000B PtypBoolean 0x000B Free/Busy Properties [MS-OXOCAL] section 2.2.12.3 0x686E000B
977 PidTagScheduleInfoDontMailDelegates Contains a value set to TRUE by the client, regardless of user input. 0x6843 PtypBoolean, 0x000B PtypBoolean 0x000B Free/Busy Properties [MS-OXODLGT] section 2.2.2.2.7 0x6843000B
978 PidTagScheduleInfoFreeBusy This property is deprecated and is not to be used. 0x686C PtypBinary, 0x0102 PtypBinary 0x0102 Free/Busy Properties [MS-OXOPFFB] section 2.2.1.4.3 0x686C0102
979 PidTagScheduleInfoFreeBusyAway Specifies the times for which the free/busy status is set a value of OOF. 0x6856 PtypMultipleBinary, 0x1102 PtypMultipleBinary 0x1102 Free/Busy Properties [MS-OXOPFFB] section 2.2.1.2.6 0x68561102
980 PidTagScheduleInfoFreeBusyBusy Specifies the blocks of time for which the free/busy status is set to a value of busy. 0x6854 PtypMultipleBinary, 0x1102 PtypMultipleBinary 0x1102 Free/Busy Properties [MS-OXOPFFB] section 2.2.1.2.4 0x68541102
981 PidTagScheduleInfoFreeBusyMerged Specifies the blocks for which free/busy data of type busy or OOF is present in the free/busy message. 0x6850 PtypMultipleBinary, 0x1102 PtypMultipleBinary 0x1102 Free/Busy Properties [MS-OXOPFFB] section 2.2.1.2.8 0x68501102
982 PidTagScheduleInfoFreeBusyTentative Specifies the blocks of times for which the free/busy status is set to a value of tentative. 0x6852 PtypMultipleBinary, 0x1102 PtypMultipleBinary 0x1102 Free/Busy Properties [MS-OXOPFFB] section 2.2.1.2.2 0x68521102
983 PidTagScheduleInfoMonthsAway Specifies the months for which free/busy data of type OOF is present in the free/busy message. 0x6855 PtypMultipleInteger32, 0x1003 PtypMultipleInteger32 0x1003 Free/Busy Properties [MS-OXOPFFB] section 2.2.1.2.5 0x68551003
984 PidTagScheduleInfoMonthsBusy Specifies the months for which free/busy data of type busy is present in the free/busy message. 0x6853 PtypMultipleInteger32, 0x1003 PtypMultipleInteger32 0x1003 Free/Busy Properties [MS-OXOPFFB] section 2.2.1.2.3 0x68531003
985 PidTagScheduleInfoMonthsMerged Specifies the months for which free/busy data of type busy or OOF is present in the free/busy message. 0x684F PtypMultipleInteger32, 0x1003 PtypMultipleInteger32 0x1003 Free/Busy Properties [MS-OXOPFFB] section 2.2.1.2.7 0x684F1003
986 PidTagScheduleInfoMonthsTentative Specifies the months for which free/busy data of type tentative is present in the free/busy message. 0x6851 PtypMultipleInteger32, 0x1003 PtypMultipleInteger32 0x1003 Free/Busy Properties [MS-OXOPFFB] section 2.2.1.2.1 0x68511003
987 PidTagScheduleInfoResourceType Set to 0x00000000 when sending and is ignored on receipt. 0x6841 PtypInteger32, 0x0003 PtypInteger32 0x0003 Free/Busy Properties [MS-OXOPFFB] section 2.2.1.4.2 0x68410003
988 PidTagSchedulePlusFreeBusyEntryId Contains the EntryID of the folder named “SCHEDULE+ FREE BUSY” under the non-IPM subtree of the public folder message store. 0x6622 PtypBinary, 0x0102 PtypBinary 0x0102 ExchangeMessageStore [MS-OXOPFFB] section 2.2.2.2 0x66220102
989 PidTagScriptData Contains a series of instructions that can be executed to format an address and the data that is needed to execute those instructions. 0x0004 PtypBinary, 0x0102 PtypBinary 0x0102 Address Book [MS-OXOABKT] section 2.2.2 0x00040102
990 PidTagSearchFolderDefinition Specifies the search criteria and search options. 0x6845 PtypBinary, 0x0102 PtypBinary 0x0102 Search [MS-OXOSRCH] section 2.2.1.2.8 0x68450102
991 PidTagSearchFolderEfpFlags Specifies flags that control how a folder is displayed. 0x6848 PtypInteger32, 0x0003 PtypInteger32 0x0003 Search [MS-OXOSRCH] section 2.2.1.2.7 0x68480003
992 PidTagSearchFolderExpiration Contains the time, in UTC, at which the search folder container will be stale and has to be updated or recreated. 0x683A PtypInteger32, 0x0003 PtypInteger32 0x0003 Search [MS-OXOSRCH] section 2.2.1.2.5 0x683A0003
993 PidTagSearchFolderId Contains a GUID that identifies the search folder. 0x6842 PtypBinary, 0x0102 PtypBinary 0x0102 Search [MS-OXOSRCH] section 2.2.1.2.1 0x68420102
994 PidTagSearchFolderLastUsed Contains the last time, in UTC, that the folder was accessed. 0x6834 PtypInteger32, 0x0003 PtypInteger32 0x0003 Search [MS-OXOSRCH] section 2.2.1.2.4 0x68340003
995 PidTagSearchFolderRecreateInfo This property is not to be used. 0x6844 PtypBinary, 0x0102 PtypBinary 0x0102 Search [MS-OXOSRCH] section 2.2.1.2.9 0x68440102
996 PidTagSearchFolderStorageType Contains flags that specify the binary large object (BLOB) data that appears in the PidTagSearchFolderDefinition (section 2.990) property. 0x6846 PtypInteger32, 0x0003 PtypInteger32 0x0003 Search [MS-OXOSRCH] section 2.2.1.2.6 0x68460003
997 PidTagSearchFolderTag Contains the value of the SearchFolderTag sub-property of the PidTagExtendedFolderFlags (section 2.692) property of the search folder container. 0x6847 PtypInteger32, 0x0003 PtypInteger32 0x0003 Search [MS-OXOSRCH] section 2.2.1.2.3 0x68470003
998 PidTagSearchFolderTemplateId Contains the ID of the template that is being used for the search. 0x6841 PtypInteger32, 0x0003 PtypInteger32 0x0003 Search [MS-OXOSRCH] section 2.2.1.2.2 0x68410003
999 PidTagSearchKey Contains a unique binary-comparable key that identifies an object for a search. 0x300B PtypBinary, 0x0102 PtypBinary 0x0102 ID Properties [MS-OXCPRPT] section 2.2.1.9 0x300B0102
1000 PidTagSecurityDescriptorAsXml Contains security attributes in XML. 0x0E6A PtypString, 0x001F PtypString 0x001F Access Control Properties [MS-XWDVSEC] section 2.2.2 0x0E6A001F
1001 PidTagSelectable This property is not set and, if set, is ignored. 0x3609 PtypBoolean, 0x000B PtypBoolean 0x000B AB Container [MS-OXOABKT] section 2.2.1 0x3609000B
1002 PidTagSenderAddressType Contains the email address type of the sending mailbox owner. 0x0C1E PtypString, 0x001F PtypString 0x001F Address Properties [MS-OXOMSG] section 2.2.1.48 0x0C1E001F
1003 PidTagSenderEmailAddress Contains the email address of the sending mailbox owner. 0x0C1F PtypString, 0x001F PtypString 0x001F Address Properties [MS-OXOMSG] section 2.2.1.49 0x0C1F001F
1004 PidTagSenderEntryId Identifies an address book EntryID that contains the address book EntryID of the sending mailbox owner. 0x0C19 PtypBinary, 0x0102 PtypBinary 0x0102 Address Properties [MS-OXOMSG] section 2.2.1.50 0x0C190102
1005 PidTagSenderIdStatus Reports the results of a Sender-ID check. 0x4079 PtypInteger32, 0x0003 PtypInteger32 0x0003 Secure Messaging Properties [MS-OXOMSG] section 2.2.1.80 0x40790003
1006 PidTagSenderName Contains the display name of the sending mailbox owner. 0x0C1A PtypString, 0x001F PtypString 0x001F Address Properties [MS-OXOMSG] section 2.2.1.51 0x0C1A001F
1007 PidTagSenderSearchKey Identifies an address book search key. 0x0C1D PtypBinary, 0x0102 PtypBinary 0x0102 Address Properties [MS-OXOMSG] section 2.2.1.52 0x0C1D0102
1008 PidTagSenderSmtpAddress Contains the SMTP email address format of the e–mail address of the sending mailbox owner. 0x5D01 PtypString, 0x001F PtypString 0x001F Mail [MS-OXOMSG] section 2.2.1.55 0x5D01001F
1009 PidTagSenderTelephoneNumber Contains the telephone number of the caller associated with a voice mail message. 0x6802 PtypString, 0x001F PtypString 0x001F Unified Messaging [MS-OXOUM] section 2.2.5.1 0x6802001F
1010 PidTagSendInternetEncoding Contains a bitmask of message encoding preferences for email sent to an email-enabled entity that is represented by this Address Book object. 0x3A71 PtypInteger32, 0x0003 PtypInteger32 0x0003 Address Properties [MS-OXOABK] section 2.2.3.19 0x3A710003
1011 PidTagSendRichInfo Indicates whether the email-enabled entity represented by the Address Book object can receive all message content, including Rich Text Format (RTF) and other embedded objects. 0x3A40 PtypBoolean, 0x000B PtypBoolean 0x000B Address Properties [MS-OXOABK] section 2.2.3.18 0x3A40000B
1012 PidTagSensitivity Indicates the sender’s assessment of the sensitivity of the Message object. 0x0036 PtypInteger32, 0x0003 PtypInteger32 0x0003 General Message Properties [MS-OXCMSG] section 2.2.1.13 0x00360003
1013 PidTagSentMailSvrEID Contains an EntryID that represents the Sent Items folder for the message. 0x6740 PtypServerId, 0x00FB PtypServerId 0x00FB ProviderDefinedNonTransmittable [MS-OXOMSG] section 2.2.3.10 0x674000FB
1014 PidTagSentRepresentingAddressType Contains an email address type. 0x0064 PtypString, 0x001F PtypString 0x001F Address Properties [MS-OXOMSG] section 2.2.1.54 0x0064001F
1015 PidTagSentRepresentingEmailAddress Contains an email address for the end user who is represented by the sending mailbox owner. 0x0065 PtypString, 0x001F PtypString 0x001F Address Properties [MS-OXOMSG] section 2.2.1.55 0x0065001F
1016 PidTagSentRepresentingEntryId Contains the identifier of the end user who is represented by the sending mailbox owner. 0x0041 PtypBinary, 0x0102 PtypBinary 0x0102 Address Properties [MS-OXOMSG] section 2.2.1.56 0x00410102
1017 PidTagSentRepresentingFlags 0x401A PtypInteger32, 0x0003 PtypInteger32 0x0003 Miscellaneous Properties 0x401A0003
1018 PidTagSentRepresentingName Contains the display name for the end user who is represented by the sending mailbox owner. 0x0042 PtypString, 0x001F PtypString 0x001F Address Properties [MS-OXOMSG] section 2.2.1.57 0x0042001F
1019 PidTagSentRepresentingSearchKey Contains a binary-comparable key that represents the end user who is represented by the sending mailbox owner. 0x003B PtypBinary, 0x0102 PtypBinary 0x0102 Address Properties [MS-OXOMSG] section 2.2.1.58 0x003B0102
1020 PidTagSentRepresentingSmtpAddress Contains the SMTP email address of the end user who is represented by the sending mailbox owner. 0x5D02 PtypString, 0x001F PtypString 0x001F Mail [MS-OXOMSG] section 2.2.1.59 0x5D02001F
1021 PidTagSerializedReplidGuidMap Contains a serialized list of REPLID and REPLGUID pairs which represent all or part of the REPLID / REPLGUID mapping of the associated Logon object. 0x6638 PtypBinary, 0x0102 PtypBinary 0x0102 Logon Properties [MS-OXCSTOR] section 2.2.2.1.1.13 0x66380102
1022 PidTagSmtpAddress Contains the SMTP address of the Message object. 0x39FE PtypString, 0x001F PtypString 0x001F Address Properties [MS-OXOABK] section 2.2.3.21 0x39FE001F
1023 PidTagSortLocaleId Contains the locale identifier. 0x6705 PtypInteger32, 0x0003 PtypInteger32 0x0003 ExchangeAdministrative [MS-OXCSTOR] section 2.2.2.1.1.14 0x67050003
1024 PidTagSourceKey Contains a value that contains an internal global identifier (GID) for this folder or message. 0x65E0 PtypBinary, 0x0102 PtypBinary 0x0102 Sync [MS-OXCFXICS] section 2.2.1.2.5 0x65E00102
1025 PidTagSpokenName Contains a recording of the mail user’s name pronunciation. 0x8CC2 PtypBinary, 0x0102 PtypBinary 0x0102 Address Book [MS-OXOABK] section 2.2.4.41 0x8CC20102
1026 PidTagSpouseName Contains the name of the mail user’s spouse/partner. 0x3A48 PtypString, 0x001F PtypString 0x001F MapiMailUser [MS-OXOCNTC] section 2.2.1.10.3 0x3A48001F
1027 PidTagStartDate Contains the value of the PidLidAppointmentStartWhole property (section 2.29). 0x0060 PtypTime, 0x0040 PtypTime 0x0040 MapiEnvelope [MS-OXOCAL] section 2.2.1.30 0x00600040
1028 PidTagStartDateEtc Contains the default retention period, and the start date from which the age of a Message object is calculated. 0x301B PtypBinary, 0x0102 PtypBinary 0x0102 Archive [MS-OXCMSG] section 2.2.1.60.4 0x301B0102
1029 PidTagStateOrProvince Contains the name of the mail user’s state or province. 0x3A28 PtypString, 0x001F PtypString 0x001F MapiMailUser [MS-OXOABK] section 2.2.4.17 0x3A28001F
1030 PidTagStoreEntryId Contains the unique EntryID of the message store where an object resides. 0x0FFB PtypBinary, 0x0102 PtypBinary 0x0102 ID Properties [MS-OXCMSG] section 2.2.1.44 0x0FFB0102
1031 PidTagStoreState Indicates whether a mailbox has any active Search folders. 0x340E PtypInteger32, 0x0003 PtypInteger32 0x0003 MapiMessageStore [MS-OXCSTOR] section 2.2.2.1 0x340E0003
1032 PidTagStoreSupportMask Indicates whether string properties within the .msg file are Unicode-encoded. 0x340D PtypInteger32, 0x0003 PtypInteger32 0x0003 Miscellaneous Properties [MS-OXMSG] section 2.1.1.1 0x340D0003
1033 PidTagStreetAddress Contains the mail user’s street address. 0x3A29 PtypString, 0x001F PtypString 0x001F MapiMailUser [MS-OXOABK] section 2.2.4.14 0x3A29001F
1034 PidTagSubfolders Specifies whether a folder has subfolders. 0x360A PtypBoolean, 0x000B PtypBoolean 0x000B MapiContainer [MS-OXCFOLD] section 2.2.2.2.1.12 0x360A000B
1035 PidTagSubject Contains the subject of the email message. 0x0037 PtypString, 0x001F PtypString 0x001F General Message Properties [MS-OXCMSG] section 2.2.1.46 0x0037001F
1036 PidTagSubjectPrefix Contains the prefix for the subject of the message. 0x003D PtypString, 0x001F PtypString 0x001F General Message Properties [MS-OXCMSG] section 2.2.1.9 0x003D001F
1037 PidTagSupplementaryInfo Contains supplementary information about a delivery status notification, as specified in [RFC3464]. 0x0C1B PtypString, 0x001F PtypString 0x001F Email [MS-OXOMSG] section 2.2.2.36 0x0C1B001F
1038 PidTagSurname Contains the mail user’s family name. 0x3A11 PtypString, 0x001F PtypString 0x001F MapiMailUser [MS-OXOABK] section 2.2.4.1 0x3A11001F
1039 PidTagSwappedToDoData Contains a secondary storage location for flags when sender flags or sender reminders are supported. 0x0E2D PtypBinary, 0x0102 PtypBinary 0x0102 MapiNonTransmittable [MS-OXOFLAG] section 2.2.1.7 0x0E2D0102
1040 PidTagSwappedToDoStore Contains the value of the PidTagStoreEntryId property (section 2.1030) of the message when the value of the PidTagSwappedToDoData property (section 2.1039) is set. 0x0E2C PtypBinary, 0x0102 PtypBinary 0x0102 MapiNonTransmittable [MS-OXOFLAG] section 2.2.1.8 0x0E2C0102
1041 PidTagTargetEntryId Contains the message ID of a Message object being submitted for optimization ([MS-OXOMSG] section 3.2.4.4). 0x3010 PtypBinary, 0x0102 PtypBinary 0x0102 ID Properties [MS-OXOMSG] section 2.2.1.76 0x30100102
1042 PidTagTelecommunicationsDeviceForDeafTelephoneNumber Contains the mail user’s telecommunication device for the deaf (TTY/TDD) telephone number. 0x3A4B PtypString, 0x001F PtypString 0x001F MapiMailUser [MS-OXOCNTC] section 2.2.1.4.13 0x3A4B001F
1043 PidTagTelexNumber Contains the mail user’s telex number. This property is returned from an NSPI server as a PtypMultipleBinary. Otherwise, the data type is PtypString. 0x3A2C PtypString, 0x001F; PtypMultipleBinary, 0x1102 PtypString 0x001F; PtypMultipleBinary, 0x1102 MapiMailUser [MS-OXOABK] section 2.2.4.30 0x3A2C001F; PtypMultipleBinary, 0x1102
1044 PidTagTemplateData Describes the controls used in the template that is used to retrieve address book information. 0x0001 PtypBinary, 0x0102 PtypBinary 0x0102 Address Book [MS-OXOABKT] section 2.2.2 0x00010102
1045 PidTagTemplateid Contains the value of the PidTagEntryId property (section 2.684), expressed as a Permanent Entry ID format. 0x3902 PtypBinary, 0x0102 PtypBinary 0x0102 MapiAddressBook [MS-OXOABK] section 2.2.3.3 0x39020102
1046 PidTagTextAttachmentCharset Specifies the character set of an attachment received via MIME with the content-type of text. 0x371B PtypString, 0x001F PtypString 0x001F Message Attachment Properties [MS-OXCMSG] section 2.2.2.25 0x371B001F
1047 PidTagThumbnailPhoto Contains the mail user’s photo in .jpg format. 0x8C9E PtypBinary, 0x0102 PtypBinary 0x0102 Address Book [MS-OXOABK] section 2.2.4.40 0x8C9E0102
1048 PidTagTitle Contains the mail user’s job title. 0x3A17 PtypString, 0x001F PtypString 0x001F MapiMailUser [MS-OXOABK] section 2.2.4.4 0x3A17001F
1049 PidTagTnefCorrelationKey Contains a value that correlates a Transport Neutral Encapsulation Format (TNEF) attachment with a message. 0x007F PtypBinary, 0x0102 PtypBinary 0x0102 MapiEnvelope [MS-OXCMSG] section 2.2.1.29 0x007F0102
1050 PidTagToDoItemFlags Contains flags associated with objects. 0x0E2B PtypInteger32, 0x0003 PtypInteger32 0x0003 MapiNonTransmittable [MS-OXOFLAG] section 2.2.1.6 0x0E2B0003
1051 PidTagTransmittableDisplayName Contains an Address Book object’s display name that is transmitted with the message. 0x3A20 PtypString, 0x001F PtypString 0x001F Address Properties [MS-OXOABK] section 2.2.3.8 0x3A20001F
1052 PidTagTransportMessageHeaders Contains transport-specific message envelope information for email. 0x007D PtypString, 0x001F PtypString 0x001F Email [MS-OXOMSG] section 2.2.1.61 0x007D001F
1053 PidTagTrustSender Specifies whether the associated message was delivered through a trusted transport channel. 0x0E79 PtypInteger32, 0x0003 PtypInteger32 0x0003 MapiNonTransmittable [MS-OXCMSG] section 2.2.1.45 0x0E790003
1054 PidTagUserCertificate Contains an ASN.1 authentication certificate for a messaging user. 0x3A22 PtypBinary, 0x0102 PtypBinary 0x0102 MapiMailUser [MS-OXOABK] section 2.2.4.34 0x3A220102
1055 PidTagUserEntryId Address book EntryID of the user logged on to the public folders. 0x6619 PtypBinary, 0x0102 PtypBinary 0x0102 ExchangeMessageStore [MS-OXCSTOR] section 2.2.2.1 0x66190102
1056 PidTagUserX509Certificate Contains a list of certificates for the mail user. 0x3A70 PtypMultipleBinary, 0x1102 PtypMultipleBinary 0x1102 MapiMailUser [MS-OXOABK] section 2.2.4.36 0x3A701102
1057 PidTagViewDescriptorBinary Contains view definitions. 0x7001 PtypBinary, 0x0102 PtypBinary 0x0102 MessageClassDefinedTransmittable [MS-OXOCFG] section 2.2.6.1 0x70010102
1058 PidTagViewDescriptorName Contains the view descriptor name. 0x7006 PtypString, 0x001F PtypString 0x001F MessageClassDefinedTransmittable [MS-OXOCFG] section 2.2.6.2 0x7006001F
1059 PidTagViewDescriptorStrings Contains view definitions in string format. 0x7002 PtypString, 0x001F PtypString 0x001F MessageClassDefinedTransmittable [MS-OXOCFG] section 2.2.6.3 0x7002001F
1060 PidTagViewDescriptorVersion Contains the View Descriptor version. 0x7007 PtypInteger32, 0x0003 PtypInteger32 0x0003 Miscellaneous Properties [MS-OXOCFG] section 2.2.6.4 0x70070003
1061 PidTagVoiceMessageAttachmentOrder Contains a list of file names for the audio file attachments that are to be played as part of a message. 0x6805 PtypString, 0x001F PtypString 0x001F Unified Messaging [MS-OXOUM] section 2.2.5.9 0x6805001F
1062 PidTagVoiceMessageDuration Specifies the length of the attached audio message, in seconds. 0x6801 PtypInteger32, 0x0003 PtypInteger32 0x0003 Unified Messaging [MS-OXOUM] section 2.2.5.3 0x68010003
1063 PidTagVoiceMessageSenderName Specifies the name of the caller who left the attached voice message, as provided by the voice network’s caller ID system. 0x6803 PtypString, 0x001F PtypString 0x001F Unified Messaging [MS-OXOUM] section 2.2.5.5 0x6803001F
1064 PidTagWeddingAnniversary Contains the date of the mail user’s wedding anniversary. 0x3A41 PtypTime, 0x0040 PtypTime 0x0040 MapiMailUser [MS-OXOCNTC] section 2.2.1.5.4 0x3A410040
1065 PidTagWlinkAddressBookEID Specifies the value of the PidTagEntryId property (section 2.684) of the user to whom the folder belongs. 0x6854 PtypBinary, 0x0102 PtypBinary 0x0102 Configuration [MS-OXOCFG] section 2.2.9.16 0x68540102
1066 PidTagWlinkAddressBookStoreEID Specifies the value of the PidTagStoreEntryId property (section 2.1030) of the current user (not the owner of the folder). 0x6891 PtypBinary, 0x0102 PtypBinary 0x0102 Configuration [MS-OXOCFG] section 2.2.9.17 0x68910102
1067 PidTagWlinkCalendarColor Specifies the background color of the calendar. 0x6853 PtypInteger32, 0x0003 PtypInteger32 0x0003 Configuration [MS-OXOCFG] section 2.2.9.15 0x68530003
1068 PidTagWlinkClientID Specifies the Client ID that allows the client to determine whether the shortcut was created on the current machine/user via an equality test. 0x6890 PtypBinary, 0x0102 PtypBinary 0x0102 Configuration [MS-OXOCFG] section 2.2.9.18 0x68900102
1069 PidTagWlinkEntryId Specifies the EntryID of the folder pointed to by the shortcut. 0x684C PtypBinary, 0x0102 PtypBinary 0x0102 Configuration [MS-OXOCFG] section 2.2.9.8 0x684C0102
1070 PidTagWlinkFlags Specifies conditions associated with the shortcut. 0x684A PtypInteger32, 0x0003 PtypInteger32 0x0003 Configuration [MS-OXOCFG] section 2.2.9.6 0x684A0003
1071 PidTagWlinkFolderType Specifies the type of folder pointed to by the shortcut. 0x684F PtypBinary, 0x0102 PtypBinary 0x0102 Configuration [MS-OXOCFG] section 2.2.9.11 0x684F0102
1072 PidTagWlinkGroupClsid Specifies the value of the PidTagWlinkGroupHeaderID property (section 2.1072) of the group header associated with the shortcut. 0x6850 PtypBinary, 0x0102 PtypBinary 0x0102 Configuration [MS-OXOCFG] section 2.2.9.12 0x68500102
1073 PidTagWlinkGroupHeaderID Specifies the ID of the navigation shortcut that groups other navigation shortcuts. 0x6842 PtypBinary, 0x0102 PtypBinary 0x0102 Configuration [MS-OXOCFG] section 2.2.9.3 0x68420102
1074 PidTagWlinkGroupName Specifies the value of the PidTagNormalizedSubject (section 2.814) of the group header associated with the shortcut. 0x6851 PtypString, 0x001F PtypString 0x001F Configuration [MS-OXOCFG] section 2.2.9.13 0x6851001F
1075 PidTagWlinkOrdinal Specifies a variable-length binary property to be used to sort shortcuts lexicographically. 0x684B PtypBinary, 0x0102 PtypBinary 0x0102 Configuration [MS-OXOCFG] section 2.2.9.7 0x684B0102
1076 PidTagWlinkRecordKey Specifies the value of PidTagRecordKey property (section 2.912) of the folder pointed to by the shortcut. 0x684D PtypBinary, 0x0102 PtypBinary 0x0102 Configuration [MS-OXOCFG] section 2.2.9.9 0x684D0102
1077 PidTagWlinkROGroupType Specifies the type of group header. 0x6892 PtypInteger32, 0x0003 PtypInteger32 0x0003 Configuration [MS-OXOCFG] section 2.2.9.19 0x68920003
1078 PidTagWlinkSaveStamp Specifies an integer that allows a client to identify with a high probability whether the navigation shortcut was saved by the current client session. 0x6847 PtypInteger32, 0x0003 PtypInteger32 0x0003 Configuration [MS-OXOCFG] section 2.2.9.4 0x68470003
1079 PidTagWlinkSection Specifies the section where the shortcut will be grouped. 0x6852 PtypInteger32, 0x0003 PtypInteger32 0x0003 Configuration [MS-OXOCFG] section 2.2.9.14 0x68520003
1080 PidTagWlinkStoreEntryId Specifies the value of the PidTagStoreEntryId property (section 2.1030) of the folder pointed to by the shortcut. 0x684E PtypBinary, 0x0102 PtypBinary 0x0102 Configuration [MS-OXOCFG] section 2.2.9.10 0x684E0102
1081 PidTagWlinkType Specifies the type of navigation shortcut. 0x6849 PtypInteger32, 0x0003 PtypInteger32 0x0003 Configuration [MS-OXOCFG] section 2.2.9.5 0x68490003

So, NOW, we are ready to use the function to get properties from Outlook objects!

? ExtractEmailHeaderProperty("0x0E060040")

might return a value similar to

1/24/2025 3:18:19 PM

It is important to know that not all Property Tag exist in an object. Some tags are mandatory and will always be present, but many are not and thus you may get back nothing.

It is important to know that not all Properties have a corresponding Property Tag to use to lookup their value with.

Then there’s the fact that some of these properties return back values that need to be ‘translated’. For instance, PidTagMessageFlags (0x0E070003) which contains some interesting information about the e-mail.

If we run

? ExtractEmailHeaderProperty("0x0E070003")

you might get back a value such as: 65555

Now if we want to understand what that actually represents, we have to build and run the value through a function such as:

Function GetMessageFlagValues(propertyValue As Long) As String
    Dim permissibleValues As Object
    Dim result As String
    Dim key As Variant
    
    Set permissibleValues = CreateObject("Scripting.Dictionary")
    
    ' Add key-value pairs where key is the numeric value and value is the textual name
    permissibleValues.Add "&H00000001", "mfRead"
    permissibleValues.Add "&H00000008", "mfUnsent "
    permissibleValues.Add "&H00000080", "mfResend"
    permissibleValues.Add "&H00000002", "mfUnmodified"
    permissibleValues.Add "&H00000004", "mfSubmitted"
    permissibleValues.Add "&H00000010", "mfHasAttach"
    permissibleValues.Add "&H00000020", "mfFromMe"
    permissibleValues.Add "&H00000040", "mfFAI"
    permissibleValues.Add "&H00000100", "mfNotifyRead"
    permissibleValues.Add "&H00000200", "mfNotifyUnread"
    permissibleValues.Add "&H00000400", "mfEverRead"
    permissibleValues.Add "&H00002000", "mfInternet"
    permissibleValues.Add "&H00008000", "mfUntrusted"
    
    For Each key In permissibleValues.Keys
        If (propertyValue And CLng(key)) <> 0 Then
            result = result & permissibleValues(key) & ", "
        End If
    Next key
    
    If Len(result) > 0 Then
        GetMessageFlagValues = propertyValue & " => " & Left(result, Len(result) - 2)
    Else
        GetMessageFlagValues = "No features enabled"
    End If

    Set permissibleValues = Nothing
End Function

Now when we run:

? GetMessageFlagValues(ExtractEmailHeaderProperty("0x0E070003"))

We’ll get more useful information like: 65555 => mfRead, mfUnmodified, mfHasAttach

Now, I’m sure your asking yourself, where did he get all those values? Well, if you consult the original [MS-OXPROPS] document linked above often the property will have a ‘Defining reference’ which is contained in another document (sadly). So if you consult that document, in the section specified, you will find all the possible values and what they represent so you can build such functons.

In the case of e-mails, the main defining reference was [MS-OXCMSG] which can be found at:

So there you have it, another way to approach things to extract metadata from Outlook objects.

There are also technique where you use specific namespaces

oItem.PropertyAccessor.GetProperty("urn:schemas:contacts:workaddress")

but I’ve found that using .PropertyAccessor.GetProperty() to be ‘tempermental’. In most cases, Outlook already exposes the properties directly at the Item level!

So instead of retrieving a contact’s Street by doing:

? oItem.PropertyAccessor.GetProperty("urn:schemas:contacts:mailingstreet")

OR

? oItem.PropertyAccessor.GetProperty("http://schemas.microsoft.com/mapi/proptag/0x3A29001E")

You can simply do:

? oItem.BusinessAddressStreet

Much simpler & cleaner code and you don’t have to mess around with PropertyAccessor and schemas …

For other hidden properties, I still personally prefer my string parsing approach from Part 1!