Adding a secondary tile that ‘deep links’ into your application is a trivial task and can be done in just a few lines of code… private void button1_Click(object sender, RoutedEventArgs e){ ShellTile tile = ShellTile.ActiveTiles.FirstOrDefault(x => x.NavigationUri.ToString() == "/Page2.xaml"); if (tile == null) { StandardTileData secondaryTile = new StandardTileData { Title = "My app", BackgroundImage...