Where is this "Applications" Directory in Windows located?

How do I open this Applications Directory in Windows? I use this folder to write AutoHotKey shortcuts which work on any one of my computers regardless of where an application has been installed, but then I forgot how to open it. Typing "Applications" into the url-esque bar of File Explorer does nothing. Does anyone know how to open it?

Applications

0

4 Answers

shell:appsfolder is a shortcut for explorer.exe shell:::{4234d49b-0245-4df3-B780-3893943456e1}

{4234d49b-0245-4df3-B780-3893943456e1} is called the CLSID Key, it's a GUID to access special folders.

I found a list of other valid GUID : here

You can run explorer.exe shell:::{4234d49b-0245-4df3-B780-3893943456e1}

2

Actually I found the solution: open the run dialog, and use the command "Shell:AppsFolder"

1

More as an academic answer than anything else, but it's somewhat like your desktop, in that it is a combination of multiple locations. As is well known, your desktop shows the union of the contents of C:\Users\<Your name>\Desktop and C:\Users\Public\Desktop

shell:appsfolder is likewise a union: it shows both your "regular" installed apps, i.e. those things found in C:\Program Files and C:\Program Files (x86) together with any Windows Store Apps you have installed.

Windows Store Apps do not show in either of the C:\Program Files* directories, they are instead placed in C:\Program Files\WindowsApps.

So in effect, it is the combination of all three of those locations.

It's trivial to show that normal installed files, seen in the Programs and Features page of the old style control panel are visible there, showing that Store Apps are installed where they are takes a little more effort.

C:\Program Files\WindowsApps is not directly visible, it requires an elevated command prompt to look inside (*). If you do a directory in there, you can see the full name of the installed apps you have, and empirically, it appears that even apps that have been uninstalled, e.g. Zune Music and Zune Video in my case, still leave a small footprint behind. This presumably makes it easier to reinstall them if so desired.

(*) Note that it is possible in a Domain environment for a group policy to lock this folder down even more tightly such that only a command prompt with TrustedInstaller credentials can view it. Overall a smart move on the part of the IT department involved IMEHO, since it's possible to do damage in there if you don't know what you're up to.

To demonstrate that Store Apps are located there, by far the easiest method is to download Sysinternal's Process Explorer, start it up, then start a Store App, and find it in the Process Explorer. Display the Image Path, and it will show that it's in a subfolder of C:\Program Files\WindowsApps.

TL;DR it's not one single location, but a combination of several locations combined into a unified view.

6

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

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

You Might Also Like