I'm currently working with this piece of code:
But what it is doing is getting the actual .exe name of the process - example "dwm.exe".
I want it to give the file description of the .exe - example instead of "dwm.exe" the description of dwm.exe is "Desktop Window Manager" and I want that file description to show up in the checkedliskbox instead of the .exe name.
Is this possible to get a list of the running process and show the file description name instead of the .exe name?
Please help!
Code:
CheckedListBox1.Items.Clear() CheckedListBox1.DisplayMember = "ProcessName" Dim p As Process For Each p In Process.GetProcesses CheckedListBox1.Items.Add(p) Next
But what it is doing is getting the actual .exe name of the process - example "dwm.exe".
I want it to give the file description of the .exe - example instead of "dwm.exe" the description of dwm.exe is "Desktop Window Manager" and I want that file description to show up in the checkedliskbox instead of the .exe name.
Is this possible to get a list of the running process and show the file description name instead of the .exe name?
Please help!
Comment