vote up 4 vote down star

Is there a way that I can get the most used applications via VB.NET? I'm developing a sort of hobby project as a quick launcher kind of thing and thought this would sit perfectly on the main form.

If possible, would somebody be able to explain to me how add/remove applications manages to get the frequency of used applications? It would be good if I could get it in a list like the XP/Vista start menu as well.

Any guidance would be greatly appreciated. :)

flag

72% accept rate

6 Answers

vote up 0 vote down

One question you should ask yourself is how are you going to determine frequency?

Are you going to base it on the number of times and application is run, or based on the length of time that an application is run for?

link|flag
vote up 0 vote down

Or course these solutions only track when the shell (explorer.exe) is used to start a program via a shortcut (all start menu items are shortcuts). That's why it is so inaccurate.

FWIW I'm not aware of any microcomputer operating system that tracks the execution frequency of program images.

I suggest for your launcher tool that you initially popule it with the shortcuts from the quicklaunch bar and just make it really easy for the user to configure rather than trying to do anything automatic - automatic stuff that doesn't work in the way the user expects is one of the most annoying aspects of user interface design.

link|flag
For the start menu at least, the program earns points, not the shortcut: blogs.msdn.com/oldnewthing/archive/… – brien Jan 7 at 13:45
vote up 1 vote down

It looks like you can find information on how often a program is run in the registry key:

HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\UserAssist\

There's more explanation here and a .NET program here that you could reverse engineer to get at the count values using VB.Net.

link|flag
vote up 0 vote down

According to this posting the information is stored in the first 28 bytes of the SlowInfoCache Registry value found at the following key:

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\App Management\ARPCache

The format of the value is (in VB.Net):

Structure SlowInfoCache
        Dim cLen As Integer         ' size of the SlowInfoCache (552 bytes)
        Dim Flag As Boolean         ' has a name
        Dim Size As Long            ' program size in bytes
        Dim LastUsed As Long        ' API-style FILETIME
        Dim Frequency As Integer    ' 0-2 = rarely; 3-9 = occassionaly; 10+ = frequently
        Dim Path As String          ' remaining 524 bytes (max path of 260 + null) in unicode
End Structure

If you are interested in the other information displayed in Control Panel -> Add or Remove Programs you will find it listed for each product under the following Registry key:

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall
link|flag
vote up 0 vote down

Vista and XP keep track of app usage in the

HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\MenuOrders\Start Menu\Programs

registry key. The Order value there for each program is however hard to read. Tuff to get good info on it as well, the key is a favorite target for viruses.

Still, you can reverse-engineer it simply by starting programs and checking how it affects the value of the Order key.

link|flag
As I understand this registry key it stores information on the order of the items in the start menu, which a user may change using e.g. drag and drop. It is not related to the usage frequency of the applications. – divo Jan 7 at 11:10
It stores lots of info for each item, I suspect user desired order is one of them. – nobugz Jan 7 at 21:59
vote up 1 vote down

This might be a decent place to start. It seems like windows does a crappy job of determining frequency of applications use.

http://blogs.msdn.com/oldnewthing/archive/2004/07/09/178342.aspx

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.