The Windows 8.1 start menu provides a list of apps that can be sorted by most used (Windows Button > Down arrow > Apps: by most used). Is there a way to programmatically get a list of these apps in this order in C#? If not in this order, at least a list of the most used and/or moderately used apps as displayed in the Windows 8.1 start menu?
Programmatically access most frequently used apps in Windows 8.1
825 Views Asked by kreddkrikk At
1
There are 1 best solutions below
Related Questions in C#
- Passing arguments to main in C using Eclipse
- kernel module does not print packet info
- error C2016 (C requires that a struct or union has at least one member) and structs typedefs
- Drawing with ncurses, sockets and fork
- How to catch delay-import dll errors (missing dll or symbol) in MinGW(-w64)?
- Configured TTL for A record(s) backing CNAME records
- Allocating memory for pointers inside structures in functions
- Finding articulation point of undirected graph by DFS
- C first fgets() is being skipped while the second runs
- C std library don't appear to be linked in object file
- gcc static library compilation
- How to do a case-insensitive string comparison?
- C programming: Create and write 2D array of files as function
- How to read a file then store to array and then print?
- Function timeouts in C and thread
Related Questions in WINDOWS-8.1
- Unable to resolve property '%1' while processing properties for Uid '%0'
- UnicodeDecodeError in pip install flake8 on Windows 8.1
- How to stop credential caching on Windows.Web.Http.HttpClient?
- Finding the default application for a particular file name extension (Even when served by a metro app)
- Trying to add images (tiles) to a map
- WinJS Issues | Windows 8.1 and Windows Phone
- Mouse moves to original location after crossing montiors
- How to get a button's ID when clicked in Windows 8 apps?
- numpy.distutils.system_info.NotFoundError: no lapack/blas resources found
- How to change keyboard language programmatically in windows 8
- Save Task<string> type to String giving Catastrophic failure
- visual studio 2013 ultimate "invalid pointer" ( Windows phone )
- How to achieve AlarmApplicationManager AlarmAccessStatus as AllowedWithWakeupCapability?
- Windows 8.1 Pro MinGW Gfortran Command Prompt 'not recognized command' error
- Javascript - how to reduce the crawl delay and make it faster?
Related Questions in MRU
- Vimperator pass-through/unset <C-Tab> by default
- Could someone help me to figure an example of MRU and CLOCK?
- Create WinUI3/MVVM Most Recently Used (MRU) List in Menu Bar
- Where does VSCode store its Most Recently Used (MRU) list of .NET projects and solutions on Windows?
- How to set up Sublime 2 to forget the files opened on the application close?
- APEX - Can a Tabular Form with its MRU functionality have filtering functionality like an Interactive Report?
- Where is the basic Control-TAB (MRU) behavior in Xcode?
- how to display most recently used list in combo box
- Where does WebMatrix store its MRU list?
- Parsing Microsoft Office 2013 MRU Lists in Registry using Perl
- vim insert-mode autocomplete using viminfo, recently opened files, sorted by word frequency
- In Spyder, how can I disable MRU (most recently used) behavior when switching between file tabs?
- How do you save the MRU List from Delphi's IDE?
- How to implement a most-recently-used cache
- How can I create a most recently used file list in Delphi 2009?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
The answer is probably yes, you can, though it's not recommended (nor easy).
Raymond Chen described this pretty clearly in his blog post, "Why is there no programmatic access to the Start menu pin list?". It talks about a different issue on Windows XP, but I think the moral of the story applies here as well, that this information is too easily abused and thus no public API is available. Stackoverflow also has a question that addresses the MFU list directly (see this question), and the answers are that you just shouldn't do it.
The thing is, the MFU list you see is stored in the UserAssist section of the registry, and its values are encrypted (used to be ROT13, but I have no idea for 8.1). Didier Stevens wrote a GUI that decrypts the values (see blog post), but it has not been updated since 8.1 came out. For what its worth the author has included the source code but it's for an older version. You can probably expand on his code to make it support 8.1 if you can do cryptanalysis.