The code listed here does not open the file history in C#:
Process.Start("::{F6B6E965-E9B2-444B-9286-10C9152EDBC5}");
Where is the problem? It says the path was not found.
Running the following with Windows "Run" opens the files history correctly:
shell:::{F6B6E965-E9B2-444B-9286-10C9152EDBC5}
There's two problems here. The target platform and the command.
It only works on Windows 8 because it's a new feature in Windows 8. Previous versions don't have anything mapped to that GUID.
eg if you try using something which is supported in previous versions like the classic 'god mode':
works fine,
will give you an error message.
Secondly, you're leaving out the
shell:::
prefix when you callProcess.Start()
. It should look like: