Skip to content

Commit b08ca87

Browse files
authored
Merge pull request #120 from Oxalin/master
Improve codebase for Windows regular apps and appX, better document Microsoft Store details + improve Linux .desktop filename
2 parents 30de879 + 370d4f7 commit b08ca87

10 files changed

Lines changed: 488 additions & 365 deletions

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,11 @@ If you're using [Squirrel.Windows](https://github.com/Squirrel/Squirrel.Windows)
144144

145145
#### Windows App Store apps
146146

147-
It requires some extra steps:
147+
If you have your Electron-based app in the Windows Store and would like to include auto launch functionality, simply linking to the executable path will not work. The Appx packages required for Electron are sandboxed and the install location can only be accessed by the system itself.
148+
149+
There is a way to bypass that - it will require you to know the developer ID, app ID and package name of your app. Then, instead of using the exec path, you will need to set the path in `AutoLaunch()` config to: `explorer.exe shell:AppsFolder\DEV_ID.APP_ID!PACKAGE_NAME`. One of the way you can find your apps details is by following [this article](http://winaero.com/blog/exclusive-how-to-start-a-modern-app-from-desktop-without-going-to-the-metro-start-screen/). Note that you might need to compile and submit your app to the store first to obtain these details.
150+
151+
If you've already submitted your app, you may use the follow steps to find the path:
148152
- Install a beta version on your Windows device from Microsoft Store
149153
- Go to Windows apps folder: press `Win+R` and type `shell:AppsFolder`
150154
- Right-click and create shortcut on Desktop

0 commit comments

Comments
 (0)