On click counts and configuration files

For some reason, I'm having a weird behavior with "sort fence by number of opened times". I'd like to reset all of them, but without losing the rest of my setup. I believe it's very likely that these are stored on the registry and on the snapshot XML files, under <icons>. The thing is I don't know how to interpret those numbers e.g.

 

Code: xml
  1.     &lt;ArrayOfString&gt;
  2.       &lt;string&gt;C:\Users\Public\Desktop\Google Chrome.lnk&lt;/string&gt;
  3.       &lt;string&gt;4|1739|162|369|116|0|0|0|\\.\DISPLAY1`|25|0|0|Explorer.EXE|0|2147483647|30825420&lt;/string&gt;
  4.  

It must be one of those values separated by the pipes, but I can't really tell which one.

4,561 views 1 replies
Reply #1 Top

Well, I actually found out with some testing: the first value is the group the icon belongs to, the tenth value is the click count.

Edit: the above is true if the preceding value involves "DISPLAY1". I then edited the xml with a simple RegEx to reset everything to 1:

Code: xml
  1. (\|\\\\\.\\DISPLAY1`?\|)\d+(\|)
to
Code: xml
  1. \11\2