Retrieve file version information

Retrieve file version information

The System.Diagnostics.FileVersionInfo class lets you easily read file version information without having to call Windows API functions (as you have to do under previous VB versions). This class has a static GetVersionInfo method that returns a FileVersionInfo object related to a given file. Once you have such an object, retrieving version information is as easy as calling its properties. Here’s a code snippet that shows what kind of properties you can query:

' get information about Microsoft WordDim exefile As String = "C:Program FilesMicrosoft OfficeOfficeWinword.exe"Dim fvi As FileVersionInfo = FileVersionInfo.GetVersionInfo(exefile)Console.WriteLine("ProductName: {0}", fvi.ProductName)Console.WriteLine("ProductVersion: {0}", fvi.ProductVersion)Console.WriteLine("CompanyName: {0}", fvi.CompanyName)Console.WriteLine("FileVersion: {0}", fvi.FileVersion)Console.WriteLine("FileDescription: {0}", fvi.FileDescription)Console.WriteLine("OriginalFilename: {0}", fvi.OriginalFilename)Console.WriteLine("LegalCopyright: {0}", fvi.LegalCopyright)Console.WriteLine("LegalTrademarks: {0}", fvi.LegalTrademarks)Console.WriteLine("Comments: {0}", fvi.Comments)Console.WriteLine("InternalName: {0}", fvi.InternalName)

You can also query individual version numbered components with the ProductMajorPart, ProductMinorPart, ProductBuildPart, and ProductPrivatePart (for the product version) and FileMajorPart, FileMinorPart, FileBuildPart, and FilePrivatePart (for the file version) properties. There are also five boolean properties that return additional information about the executable:

Console.WriteLine("IsDebug: {0}", fvi.IsDebug)Console.WriteLine("IsPatched: {0}", fvi.IsPatched)Console.WriteLine("IsPreRelease: {0}", fvi.IsPreRelease)Console.WriteLine("IsPrivateBuild: {0}", fvi.IsPrivateBuild)Console.WriteLine("IsSpecialBuild: {0}", fvi.IsSpecialBuild)

Share the Post:
XDR solutions

The Benefits of Using XDR Solutions

Cybercriminals constantly adapt their strategies, developing newer, more powerful, and intelligent ways to attack your network. Since security professionals must innovate as well, more conventional endpoint detection solutions have evolved

AI is revolutionizing fraud detection

How AI is Revolutionizing Fraud Detection

Artificial intelligence – commonly known as AI – means a form of technology with multiple uses. As a result, it has become extremely valuable to a number of businesses across

AI innovation

Companies Leading AI Innovation in 2023

Artificial intelligence (AI) has been transforming industries and revolutionizing business operations. AI’s potential to enhance efficiency and productivity has become crucial to many businesses. As we move into 2023, several

data fivetran pricing

Fivetran Pricing Explained

One of the biggest trends of the 21st century is the massive surge in analytics. Analytics is the process of utilizing data to drive future decision-making. With so much of

kubernetes logging

Kubernetes Logging: What You Need to Know

Kubernetes from Google is one of the most popular open-source and free container management solutions made to make managing and deploying applications easier. It has a solid architecture that makes

ransomware cyber attack

Why Is Ransomware Such a Major Threat?

One of the most significant cyber threats faced by modern organizations is a ransomware attack. Ransomware attacks have grown in both sophistication and frequency over the past few years, forcing

data dictionary

Tools You Need to Make a Data Dictionary

Data dictionaries are crucial for organizations of all sizes that deal with large amounts of data. they are centralized repositories of all the data in organizations, including metadata such as