I'm trying to open installed softwares with their names
I use this codes below to open them but it doesn't detect all installed softwares.
Process proc = new Process();
proc.EnableRaisingEvents = false;
proc.StartInfo.FileName = progName;
proc.Start();
Is there any way detect and open all of them with their names?
progName
is a string that changes with input.