Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Decrypt/Read/Modify “.automaticDestinations-ms” and/or ".customDestinations-ms"

Does anyone know how to read the files Microsoft creates for JumpLists?

I want to clear from JumpList all history/most visited/recently closed, WITHOUT clearing up the tasks.

I tried to use the APPID from win7api, and clear for example, google chrome's jumplist. But with "ClearAllUserTasks" method it clears EVERYTHING from the jumplist, even the "Tasks". The same thing is with deleting the file.

Isn't any way of knowing the format of the *destinations-ms files, so I can modify them myself? Basically, wanting to clear just history/most visited, but couldn't find anything in Windows 7 Api (nor C++ or .NET).

like image 249
Timotei Avatar asked Dec 13 '10 14:12

Timotei


2 Answers

The file is a Structured Storage file.

like image 153
Giorgi Avatar answered Sep 30 '22 15:09

Giorgi


The OpenMCDF project is capable of reading and basic editing out of the box and you can easily create a specific tool with the library.

like image 35
13xforever Avatar answered Sep 30 '22 15:09

13xforever