> For the complete documentation index, see [llms.txt](https://play.docs.nexx.cloud/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://play.docs.nexx.cloud/widgets/widgets-for-native-apps/windows-10-livetile.md).

# Windows 10 LiveTile

Windows 10 offers LiveTiles by default as a System Service, so there is not much to do for Implementation. Basically, only the right Feed URL have to be configured, the Widget APIs will handle the Rest.

The most easy Way for Implementing this is to use the uap:TileUpdate Setting in the AppXManifest.xml:

```markup
<uap:TileUpdate Recurrence="halfHour" UriTemplate="https://feeds.nexx.cloud/DOMAIN-ID/FEED-HASH?variant=windows&gateway=win8&app=APP-ID&implementation=os&secret=WIDGET-SECRET" />
```

{% hint style="info" %}
**WIDGET-HASH** is the Reference Hash of an existing AutoExport Widget within nexxOMNIA
{% endhint %}

{% hint style="info" %}
**WIDGET-SECRET** is an optional Security Mechanism, that can be enabled within nexxOMNIA
{% endhint %}

{% hint style="info" %}
**APP-ID** is the ID of an existing nexxOMNIA App for the Windows Platform (optional)
{% endhint %}

After that, the Widget is already active and working.

{% hint style="danger" %}
Please make sure to escape the "&" Symbols correctly for XML - for better Readibility, they have been simplified in the Example.
{% endhint %}
