为什么System.Diagnostics.FileVersionInfo.GetVersionInfo()返回意外的文件版本信息?我正在寻找有关MPIO驱动程序的版本信息。目标操作系统是Server 2008R2 SP1,应返回FileVersion 6.1.7601。取而代之的是,我获得了6.1.7600的2008R2 RTM版本。

除了不正确的文件版本,OriginalFilename也不是我期望的那样。它是mpio.sys.mui,尽管FileName是正确的。

使用资源管理器检查文件属性时,将显示正确的版本信息。

这是设计使然,还是一个错误?还是我使用FileVersionInfo erroneus的一种方式?有任何解决方法,最好在Powershell上吗?

$mpioPath = 'c:\windows\system32\drivers\mpio.sys'
$v = [System.Diagnostics.FileVersionInfo]::GetVersionInfo($mpioPath)
$v | fl -Property *

Comments           :
CompanyName        : Microsoft Corporation
FileBuildPart      : 7601
FileDescription    : MultiPath Support Bus-Driver
FileMajorPart      : 6
FileMinorPart      : 1
FileName           : c:\windows\system32\drivers\mpio.sys
FilePrivatePart    : 17619
FileVersion        : 6.1.7600.16385 (win7_rtm.090713-1255)
InternalName       : mpio.sys
IsDebug            : False
IsPatched          : False
IsPrivateBuild     : False
IsPreRelease       : False
IsSpecialBuild     : False
Language           : English (United States)
LegalCopyright     : © Microsoft Corporation. All rights reserved.
LegalTrademarks    :
OriginalFilename   : mpio.sys.mui
PrivateBuild       :
ProductBuildPart   : 7601
ProductMajorPart   : 6
ProductMinorPart   : 1
ProductName        : Microsoft® Windows® Operating System
ProductPrivatePart : 17619
ProductVersion     : 6.1.7600.16385
SpecialBuild       :

使用C#程序可以实现相同的结果,因此,与Powershell特定的功能相比,这似乎更具有.Net功能。
namespace Foo {
  class GetFileVersionInfo {
    static void Main(string[] args) {
      string mpio = @"c:\windows\system32\drivers\mpio.sys";
      System.Diagnostics.FileVersionInfo fvInfo;
      fvInfo = System.Diagnostics.FileVersionInfo.GetVersionInfo(mpio);
      System.Console.WriteLine("Original file name: " + fvInfo.OriginalFilename);
      System.Console.WriteLine("FileVersion: " + fvInfo.FileVersion);
    }
  }
}

使用FileVer.exe返回正确的版本信息:
filever $mpioPath
--a-- W32  DRV ENU  6.1.7601.17619 shp    156,544 05-20-2011 mpio.sys

如果没有其他方法,我可以使用FileVer并解析其输出。

最佳答案

我猜FileVer.exe和explorer.exe的功能与在PowerShell中相同:

$mpioPath = 'c:\windows\system32\drivers\mpio.sys'
$v = [System.Diagnostics.FileVersionInfo]::GetVersionInfo($mpioPath)

$ver = "{0}.{1}.{2}.{3}" -f $v.FileMajorPart, $v.FileMinorPart, $v.FileBuildPart, $v.FilePrivatePart

关于c# - FileVersionInfo.GetVersionInfo的异常行为,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/14522497/

10-13 06:38