Windows 10 Webstore apps, how do I run them in a batch file?
Solution 1:
You can open a Windows Store ("Metro style") app by having Windows Explorer do it for you:
- In Explorer, in the location bar, enter
shell:AppsFolder
. - Browse to the location of the app, e.g. Snip & Sketch. [On my PC, it took some time for all applications and apps to be fully displayed.]
- Right-click on the shortcut, drag to the Desktop, and select
Create link in Desktop
. - Right-click the new link and select Properties.
-
Open Notepad, enter
explorer.exe shell:appsFolder\
, append the Target shown in the Properties dialog, and append to that!App
. In the case of Snip & Sketch, the text in Notepad should be:start explorer.exe shell:appsFolder\Microsoft.ScreenSketch_8wekyb3d8bbwe!App
- Save the file with extension
.bat
.
Note the character before App is exclamation point (bang).