How can the the BITS (Background Intelligent Transfer Service) version be retrieved using C# .NET 4.0.

link|improve this question

What have you tried? – DBM Jan 16 at 18:49
1  
You must not have done much research before asking; first Google hit: Determining the Version of BITS on a Computer. – M.Babcock Jan 16 at 19:39
feedback

1 Answer

up vote 0 down vote accepted

I basically retrieved the dll version of QMgr.dll in System32, since this is the dll for BITS.

const string bitsDll = "QMgr.dll";

var bitsDllInfo = FileVersionInfo.GetVersionInfo(Path
    .Combine(System.Environment.SystemDirectory, bitsDll));

updateDeliveryStatusRequest.BitsVersion = bitsDllInfo.FileVersion;
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.