I created a WPF window with a lot of buttons, each of which launches a different program. For example, to run MS Word, I used:
System.Diagnostics.Process.Start("C:\\Program Files (x86)\\Microsoft Office\\Office14\\WINWORD.EXE");
But when I try to run the Windows 7 Snipping Tool in the same way that it does not work. This was supposed to be as follows:
System.Diagnostics.Process.Start("C:\\Windows\\System32\\SnippingTool.exe");
I am sure that the path is correct, but a message always appears stating that the file was not found. I would like to know why this is happening.
Important: I am using 64-bit versions of Windows 7.
Rodrigo guedes
source share