Get Application Icon MD5 Icon

I want to be able to get the value of the MD5 icon for the application.

I do not know where to start using VB.Net.

+3
source share
1 answer

To get the default application icon from the executable, you can use this code

After you receive the icon, save it to a file and use this code to get it MD5. You actually do not need to save the file, just convert the icon to an array of bytes and use it to convert to an MD5 value.

+2
source

All Articles