作者:Borisyu | 来源:互联网 | 2023-08-17 10:32
由于 PowerShell
可以调用.NET类,您可以执行以下操作:
[System.Diagnostics.FileVersionInfo]::GetVersionInfo("somefilepath").FileVersion
或如文件列表中所述:
get-childitem * -include *.dll,*.exe | foreach-object { "{0}`t{1}" -f $_.Name, [System.Diagnostics.FileVersionInfo]::GetVersionInfo($_).FileVersion }
甚至更好的脚本:https ://jtruher3.wordpress.com/2006/05/14/powershell-and-file-
version-information/