mirror of
https://github.com/MicrosoftDocs/windows-itpro-docs.git
synced 2025-05-12 13:27:23 +00:00
103 lines
3.0 KiB
Markdown
103 lines
3.0 KiB
Markdown
---
|
||
title: Messaging CSP
|
||
description: Messaging CSP
|
||
ms.author: maricia
|
||
ms.date: 05/02/2017
|
||
ms.topic: article
|
||
ms.prod: w10
|
||
ms.technology: windows
|
||
author: nickbrower
|
||
---
|
||
|
||
# Messaging CSP
|
||
|
||
The Messaging configuration service provider is used to configure the ability to get text messages audited on a mobile device. This CSP was added in Windows 10, version 1703.
|
||
|
||
The following diagram shows the Messaging configuration service provider in tree format.
|
||
|
||

|
||
|
||
<a href="" id="--user-msft-applocker"></a>**./User/Vendor/MSFT/Messaging**
|
||
|
||
<p style="margin-left: 20px">Root node for the Messaging configuration service provider.</p>
|
||
|
||
<a href="" id="auditinglevel"></a>**AuditingLevel**
|
||
<p style="margin-left: 20px">Turns on the "Text" auditing feature.</p>
|
||
<p style="margin-left: 20px">The following list shows the supported values:</p>
|
||
<ul>
|
||
<li>0 (Default) - Off</li>
|
||
<li>1 - On</li>
|
||
</ul>
|
||
<p style="margin-left: 20px">Supported operations are Get and Replace.</p>
|
||
|
||
<a href="" id="auditing"></a>**Auditing**
|
||
<p style="margin-left: 20px">Node for auditing.</p>
|
||
<p style="margin-left: 20px">Supported operation is Get.</p>
|
||
|
||
<a href="" id="messages"></a>**Messages**
|
||
<p style="margin-left: 20px">Node for messages.</p>
|
||
<p style="margin-left: 20px">Supported operation is Get.</p>
|
||
|
||
<a href="" id="count"></a>**Count**
|
||
<p style="margin-left: 20px">The number of messages to return in the Data setting. The default is 100.</p>
|
||
<p style="margin-left: 20px">Supported operations are Get and Replace.</p>
|
||
|
||
<a href="" id="revisionid"></a>**RevisionId**
|
||
<p style="margin-left: 20px">Retrieves messages whose revision ID is greater than RevisionId.</p>
|
||
<p style="margin-left: 20px">Supported operations are Get and Replace.</p>
|
||
|
||
<a href="" id="data"></a>**Data**
|
||
<p style="margin-left: 20px">The JSON string of text messages on the device.</p>
|
||
<p style="margin-left: 20px">Supported operations are Get and Replace.</p>
|
||
|
||
|
||
**SyncML example**
|
||
|
||
``` syntax
|
||
<SyncML xmlns="SYNCML:SYNCML1.2">
|
||
<SyncBody>
|
||
<Replace>
|
||
<CmdID>2</CmdID>
|
||
<Item>
|
||
<Target>
|
||
<LocURI>
|
||
./User/Vendor/MSFT/Messaging/Auditing/Messages/Count
|
||
</LocURI>
|
||
</Target>
|
||
<Meta>
|
||
<Format xmlns="syncml:metinf">int</Format>
|
||
<Type>text/plain</Type>
|
||
</Meta>
|
||
<Data>100</Data>
|
||
</Item>
|
||
</Replace>
|
||
<Replace>
|
||
<CmdID>3</CmdID>
|
||
<Item>
|
||
<Target>
|
||
<LocURI>
|
||
./User/Vendor/MSFT/Messaging/Auditing/Messages/RevisionId
|
||
</LocURI>
|
||
</Target>
|
||
<Meta>
|
||
<Format xmlns="syncml:metinf">chr</Format>
|
||
<Type>text/plain</Type>
|
||
</Meta>
|
||
<Data>0</Data>
|
||
</Item>
|
||
</Replace>
|
||
<Get>
|
||
<CmdID>4</CmdID>
|
||
<Item>
|
||
<Target>
|
||
<LocURI>
|
||
./User/Vendor/MSFT/Messaging/Auditing/Messages/Data
|
||
</LocURI>
|
||
</Target>
|
||
</Item>
|
||
</Get>
|
||
<Final/>
|
||
</SyncBody>
|
||
</SyncML>
|
||
```
|