Created
March 11, 2021 21:08
-
-
Save mjfusa/ba71a2d28dac982ac0ccb7356f88d96b to your computer and use it in GitHub Desktop.
MSIX Manifest Entries for Windows Service
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Extensions> | |
<desktop6:Extension Category="windows.service" EntryPoint="Windows.FullTrustApplication" Executable="WindowsServiceSample.exe"> | |
<desktop6:Service Name="WindowsService Sample" StartAccount="localSystem" StartupType="auto" /> | |
</desktop6:Extension> | |
</Extensions> | |
<Capabilities> | |
<rescap:Capability Name="runFullTrust"/> | |
<rescap:Capability Name="localSystemServices"/> | |
<rescap:CapabiIity Name="packagedServices"/> | |
</Capabilities> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You do not need an entry in <Applications> for this EXE. <Applications> is for applications that are launched from the Start menu.
You can edit the manifest using the MSIX Packaging Tool.