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.
|
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
|
|||||
|
|
'dir' is an alias for Get-ChildItem which will return back a System.IO.FileInfo class when you're calling it from the filesystem which has VersionInfo as a property. So ... To get the version info of a single file do this:
For multiple files this:
|
|||
|
|
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. |
|||
|
|
|
just another way to do it, use the built in file access technique- (get-item .\filename.exe).VersionInfo | FL You can also get any particular property off the VersionInfo thus- (get-item .\filename.exe).VersionInfo.FileVersion This is quite close to the dir technique. |
|||
|
|
|
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. |
|||
|
|
|
I know that I am a bit late here but I find this useful:
|
|||
|
|