<t>Since PowerShell can call .NET classes, you could do the following:<br/>
<br/>
<br/>
```<br/>
<br/>
Or as [noted here](https://web.archive.org/web/20081004113553/https://kamhungsoh.com/blog/2008/01/powershell-file-version-information.html) on a list of files:<br/>
<br/>
```<br/>
get-childitem * -include *.dll,*.exe | foreach-object { "{0}`t{1}" -f $_.Name, [System.Diagnostics.FileVersionInfo]::GetVersionInfo($_).FileVersion }<br/>
<br/>
```<br/>
<br/>
Or even nicer as a script: [https://jtruher3.wordpress.com/2006/05/14/powershell-and-file-version-information/](https://jtruher3.wordpress.com/2006/05/14/powershell-and-file-version-information/)</t>