vote up 5 vote down star
1

How can you get the version information from a .dll or .exe file in PowerShell?

Specifically interested in File Version, though other version info (i.e. Company, Language, Product Name, etc) would be helpful as well.

flag

5 Answers

vote up 5 vote down check

Since PowerShell can call .Net classes you could do the following:

[System.Diagnostics.FileVersionInfo]::GetVersionInfo("somefilepath").FileVersion

Or as noted here on a list of files:

get-childitem * -include *.dll,*.exe | foreach-object { "{0}`t{1}" -f $_.Name, [System.Diagnostics.FileVersionInfo]::GetVersionInfo($_).LegalCopyright }

Or even nicer as a script: http://jtruher.spaces.live.com/blog/cns!7143DA6E51A2628D!125.entry

link|flag
1  
See @Jaykul for a solution that does not require a .NET object. IMHO Jaykul's response should have been selected as the answer :) – Thomas Bratt Dec 11 '08 at 16:28
vote up 5 vote down

Try using the built-in command instead:

(Get-Command C:\Path\YourFile.Dll).FileVersionInfo

or

dir *.dll,*.exe | %{gcm $_.FullName} | select -expand File*
link|flag
vote up 4 vote down

I prefer to install the PowerShell Community Extensions and just use the Get-FileVersionInfo function that it provides.

Like so:

Get-FileVersionInfo MyAssembly.dll
with output like:
ProductVersion   FileVersion      FileName
--------------   -----------      --------
1.0.2907.18095   1.0.2907.18095   C:\Path\To\MyAssembly.dll

I've used it against an entire directory of assemblies with great success.

link|flag
I like that answer. :-) – Keith Hill Nov 6 at 2:11
vote up 1 vote down

As EBGreen said, [System.Diagnostics.FileVersionInfo]::GetVersionInfo(path) will work, but remember that you can also get all the members of FileVersionInfo, for example:

[System.Diagnostics.FileVersionInfo]::GetVersionInfo(path).CompanyName

You should be able to use every member of FileVersionInfo documented here, which will get you basically anything you could ever want about the file.

link|flag
vote up 1 vote down
[System.Diagnostics.FileVersionInfo]::GetVersionInfo("Path\To\File.dll")
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.