-
Posts
3 -
Joined
-
Last visited
Reputation Activity
-
Greg-H got a reaction from Decibel in [Win10] Run Windows Store Apps
Thank you very much!
It works for my application!
Run(@ComSpec & ' /c start "" "shell:Appsfolder\Microsoft.Messaging_8wekyb3d8bbwe!x27e26f40ye031y48a6yb130yd1f20388991ax"', '', @SW_HIDE) - Hit Win-R to open a "Run" input, and type "shell:Appsfolder"
- When in that, hit F-10 to get a menu bar, and from that menu bar select "View / Choose Details"
- Select the radio box for "AppUserModelID". That ID is what you are going to want to execute.
- Select "Details" from the little "View" gadget" on the right hand side.
"shell:Appsfolder\"+AppUserModelID found in the right column
-
Greg-H got a reaction from Subz in [Win10] Run Windows Store Apps
Thank you very much!
It works for my application!
Run(@ComSpec & ' /c start "" "shell:Appsfolder\Microsoft.Messaging_8wekyb3d8bbwe!x27e26f40ye031y48a6yb130yd1f20388991ax"', '', @SW_HIDE) - Hit Win-R to open a "Run" input, and type "shell:Appsfolder"
- When in that, hit F-10 to get a menu bar, and from that menu bar select "View / Choose Details"
- Select the radio box for "AppUserModelID". That ID is what you are going to want to execute.
- Select "Details" from the little "View" gadget" on the right hand side.
"shell:Appsfolder\"+AppUserModelID found in the right column
-
Greg-H reacted to Subz in [Win10] Run Windows Store Apps
Try:
Run(@ComSpec & ' /c start "" "ms-windows-store:"', '', @SW_HIDE)
-
Greg-H reacted to Melba23 in [Win10] Run Windows Store Apps
Greg-H,
I see you did not read those rules to which I linked very carefully - you missed the part that says:
"Do not repost the same question if the previous thread has been locked - particularly if you merely reword the question to get around one of the prohibitions listed above"
However, as this question does have some wider application (pun intended) I am prepared to let it run this time. But please do read those rules carefully and stick to them in future.
M23