Questions tagged [microsoft-bits]

Background Intelligent Transfer Service (BITS) is a component of Microsoft Windows XP and later operating systems that facilitates prioritized, throttled, and asynchronous transfer of files between machines using idle network bandwidth.

Background Intelligent Transfer Service (BITS) is a component of Microsoft Windows XP and later operating systems that facilitates prioritized, throttled, and asynchronous transfer of files between machines using idle network bandwidth. It is most commonly used by recent versions of Windows Update, Microsoft Update, Windows Server Update Services, and Systems Management Server to deliver software updates to clients, Microsoft's anti-virus scanner Microsoft Security Essentials to fetch signature updates, and is also used by Microsoft's instant messaging products to transfer files. BITS is exposed through Component Object Model (COM), making it possible to use with virtually any programming language.

http://en.wikipedia.org/wiki/Background_Intelligent_Transfer_Service

102 questions
0
votes
1 answer

VBScript Copy and BITS. When does it end?

So I have a VBScript to copy a folder. What I noticed, because I'm doing time trials, is the copy seems to continue in the background after the script ends. I think what is happening is, when the last file to be copied has started, the script…
0
votes
1 answer

Get IPaddress of virtual machine

How to transfer files using BITs protocol if I know of only Ip address of target machine. does BITs work with such. like according to theory microsoft uses BITS to update computer so it must be working with ipaddresses as well. how does it…
Kaustubh_Kharche
  • 725
  • 3
  • 13
  • 34
0
votes
3 answers

Retrieving dll version info via Win32 - VerQueryValue(...) crashes under Win7 x64

The respected open source .NET wrapper implementation (SharpBITS) of Windows BITS services fails identifying the underlying BITS version under Win7 x64. Here is the source code that fails. NativeMethods are native Win32 calls wrapped by .NET…
user256890
  • 3,396
  • 5
  • 28
  • 45
0
votes
0 answers

Accessing BITS client job properties via WMI in VBscript

I see that there are WMI classes for BITS. For example, BitsClientJob. I have been unsuccessful in accessing these via vbscript and can find no online examples. Does anyone know if listing BITS client jobs is possible via vbscript?
RLH
  • 1,545
  • 11
  • 12
0
votes
1 answer

How to create a secure automated transfer of binary files between windows servers through a firewall, using powershell?

This is my first question on SO, and I am have tried to avoid it, but am forced to ask. I can't use FTP, as that's insecure. I can't use FTPS, as I can't introduce expiring cert overhead. WEBDAV over https isn't an option. What would be ideal…
Bewc
  • 431
  • 5
  • 15
0
votes
1 answer

BITS does not download sample text file

I have following code : BitsManager manager = new BitsManager(); manager.EnumJobs(JobOwner.CurrentUser); BitsJob newJob = manager.CreateJob("TestJob", JobType.Download); string remoteFile = @"http://www.pdrrelaunch.com/img/New Text…
Madurika Welivita
  • 890
  • 1
  • 10
  • 19
0
votes
2 answers

BITS Upload response timeout

In our windows application we are using BITS Upload protocol (with upload-reply) to upload files to our server, treat them, and wait for a response. Sometimes the server elaboration can be very long (>=10 minutes) and we encounter a timeout…
Irvin Dominin
  • 30,819
  • 9
  • 77
  • 111
0
votes
3 answers

Upload/Download large files in a web app

I have a web app and I want to offer the possibility of upload and download big files (more than 2 gigas) Is it possible? Does exist some open Source project that can help me? Thank you very much
xfernandez
  • 167
  • 4
  • 8
0
votes
1 answer

Unable to get console input mode - 0x80070006

I am working on bitsadmin for downloading the files in the network. I created process for running bitsadmin job creation, addjob, resume, etc. Application works fine with windows 7 but when i run my exe on xp machine bits give exception as…
Rupali
  • 105
  • 2
  • 13
0
votes
1 answer

Must BITS (Background Intelligent Transfer Services) use a STA?

I am using SharpBITS (http://sharpbits.codeplex.com/), a well running BITS wrapper for .NET. I am not quite sure but reckon that BITS must run in a Single Thread Apartment (STA). With older versions I had some problems when running BITS in a Multi…
Jürgen Bayer
  • 2,993
  • 3
  • 26
  • 51
0
votes
1 answer

Background Intelligent Transfer Service save file name

I am learning about BITS, i found this source using google: http://www.rohitab.com/discuss/topic/28249-using-bits-to-downloadupload-files/ It works fine but the downloaded file is not saved with the specified name but with some random file name…
VisaToHell
  • 508
  • 1
  • 12
  • 29
-1
votes
2 answers

using bits transfer for an asp.net site for file transfer.

I have a requirement to transfer files to server and retrive them back via an ASP.net site. Heard using BITS is an approach. Can I use BITS in a non windows client environment? It would be nice if I can find a tutorial as well.
PAVITRA
  • 761
  • 2
  • 12
  • 24
1 2 3 4 5 6
7