mirror of
https://github.com/MicrosoftDocs/windows-itpro-docs.git
synced 2025-06-20 21:03:42 +00:00
Remove duplicate example
This commit is contained in:
@ -903,83 +903,7 @@ Escape and CDATA are mechanisms used when handling xml in xml. Consider that it'
|
|||||||
|
|
||||||
<br>
|
<br>
|
||||||
<details>
|
<details>
|
||||||
<summary>This example shows escaped XML of the Data node.</summary>
|
<summary>This example shows CData for the XML.</summary>
|
||||||
|
|
||||||
```xml
|
|
||||||
<SyncML xmlns='SYNCML:SYNCML1.2'>
|
|
||||||
<SyncBody>
|
|
||||||
<Replace>
|
|
||||||
<CmdID>2</CmdID>
|
|
||||||
<Item>
|
|
||||||
<Target>
|
|
||||||
<LocURI>./Device/Vendor/MSFT/AssignedAccess/Configuration</LocURI>
|
|
||||||
</Target>
|
|
||||||
<Meta>
|
|
||||||
<Format xmlns="syncml:metinf">chr</Format>
|
|
||||||
</Meta>
|
|
||||||
<Data>
|
|
||||||
<?xml version="1.0" encoding="utf-8" ?>
|
|
||||||
<AssignedAccessConfiguration xmlns="http://schemas.microsoft.com/AssignedAccess/2017/config">
|
|
||||||
<Profiles>
|
|
||||||
<Profile Id="{9A2A490F-10F6-4764-974A-43B19E722C23}">
|
|
||||||
<AllAppsList>
|
|
||||||
<AllowedApps>
|
|
||||||
<App AppUserModelId="Microsoft.ZuneMusic_8wekyb3d8bbwe!Microsoft.ZuneMusic" />
|
|
||||||
<App AppUserModelId="Microsoft.ZuneVideo_8wekyb3d8bbwe!Microsoft.ZuneVideo" />
|
|
||||||
<App AppUserModelId="Microsoft.Windows.Photos_8wekyb3d8bbwe!App" />
|
|
||||||
<App AppUserModelId="Microsoft.BingWeather_8wekyb3d8bbwe!App" />
|
|
||||||
<App AppUserModelId="Microsoft.WindowsCalculator_8wekyb3d8bbwe!App" />
|
|
||||||
<App DesktopAppPath="%windir%\system32\mspaint.exe" />
|
|
||||||
<App DesktopAppPath="C:\Windows\System32\notepad.exe" />
|
|
||||||
</AllowedApps>
|
|
||||||
</AllAppsList>
|
|
||||||
<StartLayout>
|
|
||||||
<![CDATA[<LayoutModificationTemplate xmlns:defaultlayout="http://schemas.microsoft.com/Start/2014/FullDefaultLayout" xmlns:start="http://schemas.microsoft.com/Start/2014/StartLayout" Version="1" xmlns="http://schemas.microsoft.com/Start/2014/LayoutModification">
|
|
||||||
<LayoutOptions StartTileGroupCellWidth="6" />
|
|
||||||
<DefaultLayoutOverride>
|
|
||||||
<StartLayoutCollection>
|
|
||||||
<defaultlayout:StartLayout GroupCellWidth="6">
|
|
||||||
<start:Group Name="Group1">
|
|
||||||
<start:Tile Size="4x4" Column="0" Row="0" AppUserModelID="Microsoft.ZuneMusic_8wekyb3d8bbwe!Microsoft.ZuneMusic" />
|
|
||||||
<start:Tile Size="2x2" Column="4" Row="2" AppUserModelID="Microsoft.ZuneVideo_8wekyb3d8bbwe!Microsoft.ZuneVideo" />
|
|
||||||
<start:Tile Size="2x2" Column="4" Row="0" AppUserModelID="Microsoft.Windows.Photos_8wekyb3d8bbwe!App" />
|
|
||||||
<start:Tile Size="2x2" Column="4" Row="4" AppUserModelID="Microsoft.BingWeather_8wekyb3d8bbwe!App" />
|
|
||||||
<start:Tile Size="4x2" Column="0" Row="4" AppUserModelID="Microsoft.WindowsCalculator_8wekyb3d8bbwe!App" />
|
|
||||||
</start:Group>
|
|
||||||
<start:Group Name="Group2">
|
|
||||||
<start:DesktopApplicationTile Size="2x2" Column="2" Row="0" DesktopApplicationID="{1AC14E77-02E7-4E5D-B744-2EB1AE5198B7}\mspaint.exe" />
|
|
||||||
<start:DesktopApplicationTile Size="2x2" Column="0" Row="0" DesktopApplicationID="{1AC14E77-02E7-4E5D-B744-2EB1AE5198B7}\notepad.exe" />
|
|
||||||
</start:Group>
|
|
||||||
</defaultlayout:StartLayout>
|
|
||||||
</StartLayoutCollection>
|
|
||||||
</DefaultLayoutOverride>
|
|
||||||
</LayoutModificationTemplate>
|
|
||||||
]]>
|
|
||||||
</StartLayout>
|
|
||||||
<Taskbar ShowTaskbar="true"/>
|
|
||||||
</Profile>
|
|
||||||
</Profiles>
|
|
||||||
<Configs>
|
|
||||||
<Config>
|
|
||||||
<Account>MultiAppKioskUser</Account>
|
|
||||||
<DefaultProfile Id="{9A2A490F-10F6-4764-974A-43B19E722C23}"/>
|
|
||||||
</Config>
|
|
||||||
</Configs>
|
|
||||||
</AssignedAccessConfiguration>
|
|
||||||
|
|
||||||
</Data>
|
|
||||||
</Item>
|
|
||||||
</Replace>
|
|
||||||
<Final />
|
|
||||||
</SyncBody>
|
|
||||||
</SyncML>
|
|
||||||
```
|
|
||||||
|
|
||||||
</details>
|
|
||||||
|
|
||||||
<br>
|
|
||||||
<details>
|
|
||||||
<summary>This example uses CData for the XML.</summary>
|
|
||||||
|
|
||||||
```xml
|
```xml
|
||||||
<SyncML xmlns='SYNCML:SYNCML1.2'>
|
<SyncML xmlns='SYNCML:SYNCML1.2'>
|
||||||
@ -1055,7 +979,7 @@ Escape and CDATA are mechanisms used when handling xml in xml. Consider that it'
|
|||||||
|
|
||||||
<br>
|
<br>
|
||||||
<details>
|
<details>
|
||||||
<summary>Example of Get command that returns the configuration in the device.</summary>
|
<summary>This example shows the Get command.</summary>
|
||||||
|
|
||||||
```xml
|
```xml
|
||||||
<SyncML xmlns='SYNCML:SYNCML1.2'>
|
<SyncML xmlns='SYNCML:SYNCML1.2'>
|
||||||
@ -1077,7 +1001,7 @@ Escape and CDATA are mechanisms used when handling xml in xml. Consider that it'
|
|||||||
|
|
||||||
<br>
|
<br>
|
||||||
<details>
|
<details>
|
||||||
<summary>Example of the Delete command.</summary>
|
<summary>This example shows the Delete command.</summary>
|
||||||
|
|
||||||
```xml
|
```xml
|
||||||
<SyncML xmlns='SYNCML:SYNCML1.2'>
|
<SyncML xmlns='SYNCML:SYNCML1.2'>
|
||||||
|
Reference in New Issue
Block a user