I am currently running a process with the name notepad.exe through C# using ProcessStartInfo class, I want to change the process's description (The one where you can see in task manager) just for fun, Is it possible to do so and how?
The application I want to run is a third party application
Here is how I run my notepad.exe:
ProcessStartInfo startInfo = new ProcessStartInfo();
startInfo.FileName = @"C:\Program Files\WiLMA\Dependencies\winpmem-1.4\winpmem_1.4.exe";
startInfo.Verb = "runas";
var process = Process.Start(startInfo);
process.WaitForExit();