gpt4 book ai didi

c# - FileVersionInfo.GetVersionInfo 的意外行为

转载 作者:行者123 更新时间:2023-12-02 23:05:15 25 4
gpt4 key购买 nike

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

除了文件版本不正确之外,OriginalFilename 也不是我所期望的那样。它是 mpio.sys.mui,但文件名是正确的。

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

这是设计使然、错误还是我使用 FileVersionInfo 的方式有误?是否有任何解决方法,最好是在 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# 程序可以获得相同的结果,因此这似乎更多的是 .Net 功能,而不是 Powershell 特定的功能。

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 和 expolrer.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/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com