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.
|
1
|
How can you get the version information from a Specifically interested in
|
||
|
|
|
|
Since PowerShell can call .Net classes you could do the following:
Or as noted here on a list of files:
Or even nicer as a script: http://jtruher.spaces.live.com/blog/cns!7143DA6E51A2628D!125.entry |
||||
|
|
|
Try using the built-in command instead:
or
|
|||
|
|
|
|
I prefer to install the PowerShell Community Extensions and just use the Get-FileVersionInfo function that it provides. Like so: Get-FileVersionInfo MyAssembly.dllwith 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. |
||
|
|
|
As EBGreen said, [System.Diagnostics.FileVersionInfo]::GetVersionInfo(path) will work, but remember that you can also get all the members of FileVersionInfo, for example:
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. |
||
|
|
|
|
|
||
|
|