This commit is contained in:
Paolo Matarazzo
2025-03-08 10:51:52 -05:00
parent 6c282961f9
commit cf273064fa
2 changed files with 29 additions and 3 deletions

View File

@ -7,6 +7,8 @@ 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"
@ -22,3 +24,24 @@ Example of secondary tiles in XML generated by the PowerShell cmdlet `Export-Sta
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