shell bypass 403
<!-- The data template for Maps answer in portrait mode -->
<DataTemplate xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:tm="using:SearchUI.TemplateManager"
x:Key="Maps.Home_Portrait_8_1_RP">
<Button Style="{CustomResource Resources.Shared.TopLevelButtonStyle}"
Command="{Binding System_ConnectedSearch_ActivateCommand}">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition />
</Grid.RowDefinitions>
<TextBlock Grid.Row="0"
Style="{CustomResource Resources.Shared.SerpPrimaryTextStyle}"
MaxLines="1"
tm:RichText.Text="{Binding System_ItemNameDisplay}"
AutomationProperties.AutomationId="Title" />
<Grid Grid.Row="1"
Margin="0, 12, 0, 0">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto" />
<ColumnDefinition />
</Grid.ColumnDefinitions>
<Border Grid.Column="0"
Style="{CustomResource Resources.Shared.ImagePlaceholderBorderStyle}"
VerticalAlignment="Top">
<Image VerticalAlignment="Top"
Source="{Binding Extended:imagePortrait.Extended:src}"
Width="{Binding Extended:imagePortrait.Extended:width}"
Height="{Binding Extended:imagePortrait.Extended:height}"
AutomationProperties.AutomationId="MapImage"
AutomationProperties.Name="{Binding System_ItemNameDisplay}"
Style="{CustomResource Resources.Shared.BaseImageStyle}" />
</Border>
<ContentControl Grid.Column="1"
Margin="20, 0, 0, 0"
VerticalAlignment="Top"
Content="{Binding}"
DataContext="{Binding Extended:appButton}"
ContentTemplateSelector="{CustomResource GenericDataTemplateSelector}" />
</Grid>
</Grid>
</Button>
</DataTemplate>