9

I've noticed some zero-bytes executable in folder %USERPROFILE%\AppData\Local\Microsoft\WindowsApps created during install some applications. What are they? How can I create and call it in the same way as Windows does? Thank you.

GameBarElevatedFT_Alias.exe 0 C:\Users\nguyenc\AppData\Local\Microsoft\WindowsApps kali.exe 0 C:\Users\nguyenc\AppData\Local\Microsoft\WindowsApps x410.exe 0 C:\Users\nguyenc\AppData\Local\Microsoft\WindowsApps Alpine.exe 0 C:\Users\nguyenc\AppData\Local\Microsoft\WindowsApps archlinux.exe 0 C:\Users\nguyenc\AppData\Local\Microsoft\WindowsApps MicrosoftEdge.exe 0 C:\Users\nguyenc\AppData\Local\Microsoft\WindowsApps ubuntu.exe 0 C:\Users\nguyenc\AppData\Local\Microsoft\WindowsApps wt.exe 0 C:\Users\nguyenc\AppData\Local\Microsoft\WindowsApps Slack.exe 0 C:\Users\nguyenc\AppData\Local\Microsoft\WindowsApps python.exe 0 C:\Users\nguyenc\AppData\Local\Microsoft\WindowsApps python3.exe 0 C:\Users\nguyenc\AppData\Local\Microsoft\WindowsApps fedoraremix.exe 0 C:\Users\nguyenc\AppData\Local\Microsoft\WindowsApps

2
  • 3
    This is a special type of app-execution reparse point that's used to set up the security context for running a UWP app. CreateProcessW reparses this internally in order to allow individual users to run a particular app. – Eryk Sun Oct 9 '19 at 16:10
  • 3
    To display the raw reparse point buffer for "python.exe", run fsutil reparsepoint query %localappdata%\Microsoft\WindowsApps\python.exe. – Eryk Sun Oct 9 '19 at 16:12
6

These are execution aliases for MS Store apps. You can manage it in Settings > Apps > Apps & features > App execution aliases. App execution aliases

1
  • 5
    Strange, didn't know this. I had the problem that Windows won't start these apps (from C:\Users\username\AppData\Local\Microsoft\WindowsApps after an Windows update. Turning them off and on again in the App execution aliases did the trick! – Xairoo May 29 at 7:53

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

Not the answer you're looking for? Browse other questions tagged or ask your own question.