【发布时间】:2023-03-15 15:25:01
【问题描述】:
如何使用 C# .NET 4.0 检索 BITS(后台智能传输服务)版本。
【问题讨论】:
-
问之前一定没做太多研究;谷歌第一次点击:Determining the Version of BITS on a Computer。
标签: c# .net-4.0 microsoft-bits
如何使用 C# .NET 4.0 检索 BITS(后台智能传输服务)版本。
【问题讨论】:
标签: c# .net-4.0 microsoft-bits
我基本上是在 System32 中检索到 QMgr.dll 的 dll 版本,因为这是 BITS 的 dll。
const string bitsDll = "QMgr.dll";
var bitsDllInfo = FileVersionInfo.GetVersionInfo(Path
.Combine(System.Environment.SystemDirectory, bitsDll));
updateDeliveryStatusRequest.BitsVersion = bitsDllInfo.FileVersion;
【讨论】: