System.Diagnostics.FileVersionInfo.GetVersionInfo()
予期しないファイルバージョン情報が返されるのはなぜですか?MPIOドライバーのバージョン情報を探しています。ターゲットOSはServer2008R2SP1であり、FileVersion6.1.7601を返す必要があります。その代わりに、2008R2RTMバージョンの6.1.7600を入手しました。
間違ったファイルバージョンに加えて、OriginalFilenameも私が期待するものではありません。FileNameは正しいですが、mpio.sys.muiです。
Explorerでファイルのプロパティを調べると、正しいバージョン情報が表示されます。
これは仕様によるものですか、バグですか、それとも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を使用して、その出力を解析できます。