mirror of
https://github.com/MicrosoftDocs/windows-itpro-docs.git
synced 2025-05-13 22:07:22 +00:00
48 lines
1.6 KiB
Markdown
48 lines
1.6 KiB
Markdown
---
|
|
author: paolomatarazzo
|
|
ms.author: paoloma
|
|
ms.date: 03/13/2024
|
|
ms.topic: include
|
|
---
|
|
|
|
Example of secondary tiles in XML generated by the PowerShell cmdlet `Export-StartLayout`:
|
|
|
|
::: zone pivot="windows-10"
|
|
|
|
```xml
|
|
<start:SecondaryTile
|
|
AppUserModelID="Microsoft.MicrosoftEdge.Stable_8wekyb3d8bbwe!App"
|
|
TileID="MSEdge._pin_liejfngppphclkplgppaghabld"
|
|
DisplayName="Contoso Intranet"
|
|
Size="2x2" Column="0" Row="0"
|
|
Arguments=" --pin-url=https://intranet.contoso.com/ --profile-directory=Default --launch-tile"
|
|
Square71x71LogoUri="ms-appx:///"
|
|
Square150x150LogoUri="ms-appdata:///local/Pins/MSEdge._pin_liejfngppphclkplgppaghabld/Logo.png"
|
|
Wide310x150LogoUri="ms-appx:///"
|
|
Square310x310LogoUri="ms-appx:///"
|
|
ShowNameOnSquare150x150Logo="true"
|
|
ShowNameOnWide310x150Logo="false" BackgroundColor="#efefef" ForegroundText="light"
|
|
/>
|
|
```
|
|
|
|
::: zone-end
|
|
|
|
::: zone pivot="windows-11"
|
|
|
|
```json
|
|
{
|
|
"secondaryTile": {
|
|
"tileId": "MSEdge._pin_obflpecijelbcglkjpdhljkfbe",
|
|
"arguments": " --pin-url=https://intranet.contoso.com/ --profile-directory=Default --launch-tile",
|
|
"displayName": "Contoso Intranet",
|
|
"packagedAppId": "Microsoft.MicrosoftEdge.Stable_8wekyb3d8bbwe!App",
|
|
"smallIconPath": "ms-appdata:///local/Pins/MSEdge._pin_obflpecijelbcglkjpdhljkfbe/SmallLogo.png",
|
|
"smallIcon": "Base64 encoded value of the logo",
|
|
"largeIconPath": "ms-appdata:///local/Pins/MSEdge._pin_obflpecijelbcglkjpdhljkfbe/Logo.png",
|
|
"largeIcon": "Base64 encoded value of the logo",
|
|
}
|
|
}
|
|
```
|
|
|
|
::: zone-end
|