Получение версии BITS в C#
Как получить версию BITS (Background Intelligent Transfer Service) с помощью C# .NET 4.0.
1 ответ
Решение
Я в основном получил версию DLL QMgr.dll в System32, так как это DLL для BITS.
const string bitsDll = "QMgr.dll";
var bitsDllInfo = FileVersionInfo.GetVersionInfo(Path
.Combine(System.Environment.SystemDirectory, bitsDll));
updateDeliveryStatusRequest.BitsVersion = bitsDllInfo.FileVersion;