How can I retrieve a process description and company name using a handle to it.
I’m using Windows API function.
How can I retrieve a process description and company name using a handle to
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Version (and copyright) informations are stored in the file version info. You can obtain them using the
GetFileVersionInfofunction.Version can be retrieved with a simple call to
GetFileVersionInfoto fill theVS_FIXEDFILEINFOstructure but copyright information (in your case ProductName and CompanyName) is stored in localized/localizable text fields. For an example look theVerQueryValuefunction.