Hello Halifax Crosby,
I spent a bit of time looking around after seeing your error. I think I’ve found a plausible explanation for what’s happening and a few things worth trying to fix it.
It seems the error code 0x8007010B stands for “directory name is invalid.” In the context of using an AppExecutionAlias inside an MSIX package, that likely means the alias-registration process tried to register a path to your executable but the path it got was considered invalid.
A few things I suggest you try:
- Rename the folder(s) and executable so there are no spaces or special characters, for example MyApp\MyApp.exe instead of My App\My App.exe. Then update the manifest accordingly, rebuild, and reinstall.
- If you want to test whether the alias registration is the issue, you can temporarily remove the <AppExecutionAlias> extension from the manifest, the app should still install and run normally, just without the alias.
- After installation, check whether the alias was actually registered: on Windows aliases are typically stored under …\Users<YourUser>\AppData\Local\Microsoft\WindowsApps. If it’s missing, alias creation failed.
- If renaming doesn’t help, there might be other causes, for example, permission issues, profile corruption, or restrictions on alias creation.
Hope this helps !