Skip to content
This repository was archived by the owner on Mar 4, 2025. It is now read-only.

Commit fc3b7f2

Browse files
thetorpedodogmalxau-msft
authored andcommitted
Add appExecutionAlias so 'winfile.exe' appears on the PATH.
1 parent ede2b6a commit fc3b7f2

File tree

1 file changed

+19
-2
lines changed

1 file changed

+19
-2
lines changed

Package/Package.appxmanifest

Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<Package xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10" xmlns:mp="http://schemas.microsoft.com/appx/2014/phone/manifest" xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10" xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities" IgnorableNamespaces="uap mp rescap">
2+
<Package
3+
xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10"
4+
xmlns:mp="http://schemas.microsoft.com/appx/2014/phone/manifest"
5+
xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10"
6+
xmlns:uap3="http://schemas.microsoft.com/appx/manifest/uap/windows10/3"
7+
xmlns:desktop="http://schemas.microsoft.com/appx/manifest/desktop/windows10"
8+
xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities"
9+
IgnorableNamespaces="desktop uap uap3 mp rescap">
310
<Identity Name="Microsoft.WindowsFileManager" Publisher="CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US" Version="10.2.0.0" />
411
<Properties>
512
<DisplayName>Windows File Manager</DisplayName>
@@ -23,10 +30,20 @@
2330
</uap:DefaultTile>
2431
<uap:SplashScreen Image="Images\SplashScreen.png" />
2532
</uap:VisualElements>
33+
<Extensions>
34+
<uap3:Extension
35+
Category="windows.appExecutionAlias"
36+
Executable="Winfile\Winfile.exe"
37+
EntryPoint="Windows.FullTrustApplication">
38+
<uap3:AppExecutionAlias>
39+
<desktop:ExecutionAlias Alias="Winfile.exe" />
40+
</uap3:AppExecutionAlias>
41+
</uap3:Extension>
42+
</Extensions>
2643
</Application>
2744
</Applications>
2845
<Capabilities>
2946
<Capability Name="internetClient" />
3047
<rescap:Capability Name="runFullTrust" />
3148
</Capabilities>
32-
</Package>
49+
</Package>

0 commit comments

Comments
 (0)