I'm trying to use MS BITS (Background Intelligent Transfer service) to upload files from many computers to a server, but the only useful example I read was in StackOverFlow, and here it is:
Imports SharpBits.Base
Using b As New BitsManager()
mynewjob = b.CreateJob("jobname", JobType.Upload)
mynewjob.AddFile("\\ServerName\BitsUploads\File.txt", "C:\File.exe")
mynewjob.Resume()
End Using
but frankly, I don't know how to handle the whole thing about BITS jobs management, and I could not find a complete example demonstrate how the management will be so, please I need help about that.