shell bypass 403
<!-- The data template for Phonebook answer in snap 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="Phonebook.Home_Snap_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"
MaxLines="2"
Style="{CustomResource Resources.Shared.SerpPrimaryTextStyle}"
tm:RichText.Text="{Binding System_ItemNameDisplay}"
AutomationProperties.AutomationId="Title" />
<Grid Grid.Row="1">
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition />
</Grid.RowDefinitions>
<ContentControl Margin="0, 7, 0, 0"
Grid.Row="0"
Content="{Binding}"
DataContext="{Binding Extended:appButton}"
ContentTemplateSelector="{CustomResource GenericDataTemplateSelector}" />
<Border Grid.Row="1"
Margin="0, 16, 0, 0"
Style="{CustomResource Resources.Shared.ImagePlaceholderBorderStyle}"
HorizontalAlignment="Left"
VerticalAlignment="Top">
<Image HorizontalAlignment="Left"
VerticalAlignment="Top"
Source="{Binding Extended:imageSnap.Extended:src}"
Width="{Binding Extended:imageSnap.Extended:width}"
Height="{Binding Extended:imageSnap.Extended:height}"
AutomationProperties.AutomationId="Maps.MapImage"
AutomationProperties.Name="{Binding System_ItemNameDisplay}"
Style="{CustomResource Resources.Shared.BaseImageStyle}" />
</Border>
</Grid>
</Grid>
</Button>
</DataTemplate>