Windows 包装及;已安装的UWP应用程序不在“开始”菜单中

Windows 包装及;已安装的UWP应用程序不在“开始”菜单中,windows,powershell,uwp,Windows,Powershell,Uwp,我通过sideload为我的UWP项目生成了应用程序包,并使用制作的Powershell脚本安装了它。虽然应用程序已安装且文件夹是在WindowsApps中创建的,但我无法启动该应用程序,因为它不在“开始”菜单中。有没有办法解决这个问题 编辑: WAP包清单中的应用程序标记: <Applications> <Application Id="App" Executable="$targetnametoken$.exe" EntryPoint="$targeten

我通过sideload为我的UWP项目生成了应用程序包,并使用制作的Powershell脚本安装了它。虽然应用程序已安装且文件夹是在WindowsApps中创建的,但我无法启动该应用程序,因为它不在“开始”菜单中。有没有办法解决这个问题

编辑:

WAP包清单中的应用程序标记:

<Applications>
 <Application Id="App"
    Executable="$targetnametoken$.exe"
    EntryPoint="$targetentrypoint$">
  <uap:VisualElements
    DisplayName="WorksPackage2"
    Description="Package"
    BackgroundColor="transparent"
    Square150x150Logo="Images\Square150x150Logo.png"
    Square44x44Logo="Images\Square44x44Logo.png"
    AppListEntry="none">
    <uap:DefaultTile Wide310x150Logo="Images\Wide310x150Logo.png" />
    <uap:SplashScreen Image="Images\SplashScreen.png" />
  </uap:VisualElements>
    <Extensions>
        <uap:Extension Category="windows.appService">
            <uap:AppService Name="iTunesConnection" />
        </uap:Extension>
        <desktop:Extension
          xmlns:desktop="http://schemas.microsoft.com/appx/manifest/desktop/windows10"
          Category="windows.fullTrustProcess"
          Executable="iTunesConsole\iTunesConsole.exe">
        </desktop:Extension>
    </Extensions>
</Application>
<Applications>
<Application Id="App"
  Executable="$targetnametoken$.exe"
  EntryPoint="Works.App">
  <uap:VisualElements
    DisplayName="Works"
    Square150x150Logo="Assets\Square150x150Logo.png"
    Square44x44Logo="Assets\Square44x44Logo.png"
    Description="Works"
    BackgroundColor="transparent">
    <uap:DefaultTile Wide310x150Logo="Assets\Wide310x150Logo.png"/>
    <uap:SplashScreen Image="Assets\SplashScreen.png" />
  </uap:VisualElements>
    <Extensions>
        <uap3:Extension Category="windows.appExtension">
            <uap3:AppExtension Name="microsoft.gameBarUIExtension"
                               Id="YourUniqueIdHere"
                               DisplayName="iTunes Controller"
                               Description="desc"
                               PublicFolder="GameBar">
                <uap3:Properties>
                    <GameBarWidget Type="Standard">
                        <HomeMenuVisible>true</HomeMenuVisible>
                        <PinningSupported>true</PinningSupported>
                        <Window>
                            <Size>
                                <Height>300</Height>
                                <Width>400</Width>
                                <MinHeight>150</MinHeight>
                                <MinWidth>200</MinWidth>
                                <MaxHeight>1000</MaxHeight>
                                <MaxWidth>1000</MaxWidth>
                            </Size>
                            <ResizeSupported>
                                <Horizontal>true</Horizontal>
                                <Vertical>true</Vertical>
                            </ResizeSupported>
                        </Window>
                    </GameBarWidget>
                </uap3:Properties>
            </uap3:AppExtension>
        </uap3:Extension>
    </Extensions>
</Application>

UWP清单中的应用程序标记:

<Applications>
 <Application Id="App"
    Executable="$targetnametoken$.exe"
    EntryPoint="$targetentrypoint$">
  <uap:VisualElements
    DisplayName="WorksPackage2"
    Description="Package"
    BackgroundColor="transparent"
    Square150x150Logo="Images\Square150x150Logo.png"
    Square44x44Logo="Images\Square44x44Logo.png"
    AppListEntry="none">
    <uap:DefaultTile Wide310x150Logo="Images\Wide310x150Logo.png" />
    <uap:SplashScreen Image="Images\SplashScreen.png" />
  </uap:VisualElements>
    <Extensions>
        <uap:Extension Category="windows.appService">
            <uap:AppService Name="iTunesConnection" />
        </uap:Extension>
        <desktop:Extension
          xmlns:desktop="http://schemas.microsoft.com/appx/manifest/desktop/windows10"
          Category="windows.fullTrustProcess"
          Executable="iTunesConsole\iTunesConsole.exe">
        </desktop:Extension>
    </Extensions>
</Application>
<Applications>
<Application Id="App"
  Executable="$targetnametoken$.exe"
  EntryPoint="Works.App">
  <uap:VisualElements
    DisplayName="Works"
    Square150x150Logo="Assets\Square150x150Logo.png"
    Square44x44Logo="Assets\Square44x44Logo.png"
    Description="Works"
    BackgroundColor="transparent">
    <uap:DefaultTile Wide310x150Logo="Assets\Wide310x150Logo.png"/>
    <uap:SplashScreen Image="Assets\SplashScreen.png" />
  </uap:VisualElements>
    <Extensions>
        <uap3:Extension Category="windows.appExtension">
            <uap3:AppExtension Name="microsoft.gameBarUIExtension"
                               Id="YourUniqueIdHere"
                               DisplayName="iTunes Controller"
                               Description="desc"
                               PublicFolder="GameBar">
                <uap3:Properties>
                    <GameBarWidget Type="Standard">
                        <HomeMenuVisible>true</HomeMenuVisible>
                        <PinningSupported>true</PinningSupported>
                        <Window>
                            <Size>
                                <Height>300</Height>
                                <Width>400</Width>
                                <MinHeight>150</MinHeight>
                                <MinWidth>200</MinWidth>
                                <MaxHeight>1000</MaxHeight>
                                <MaxWidth>1000</MaxWidth>
                            </Size>
                            <ResizeSupported>
                                <Horizontal>true</Horizontal>
                                <Vertical>true</Vertical>
                            </ResizeSupported>
                        </Window>
                    </GameBarWidget>
                </uap3:Properties>
            </uap3:AppExtension>
        </uap3:Extension>
    </Extensions>
</Application>

真的
真的
300
400
150
200
1000
1000
真的
真的

问题在于您有:

AppListEntry="none"

上面写着“请不要在开始菜单中添加条目。”

你能发布声明你的应用的AppXManifest.xml片段吗?@PeterTorr MSFT刚刚添加了它。谢谢你解决了我的问题