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

BITS job throws an error trying to download a zip file

We get this error from the BITS job when trying to download a zip file from a remote server (we implemented an HTTP Handler for zip files on that server): ERROR CODE: 0x80200013 - The server does not support the necessary HTTP protocol.…
ybdev
  • 15
  • 4
0
votes
1 answer

SCCM 1710 - Client Data Source Report incorrect

I have 800 clients that I have enabled Branch Caching on, however when deploying a package, I do not see the Client Data Source report showing clients having used the Branch Cache. I have waited 48 hours after deploying the package, but it still…
Rob Sked
  • 277
  • 1
  • 5
  • 15
0
votes
0 answers

How can I resume suspended jobs using powershell using BITS command?

For BITS Transfer on Windows, There are some JOBIDS whose TransferType is "upload" and JobState is "Suspended". I am executing below command from PowerShell :- Get-BitsTransfer | Resume-BitsTransfer I am getting below error :- Resume-BitsTransfer…
user2781150
  • 179
  • 1
  • 2
  • 10
0
votes
0 answers

How to define Background Intelligent Transfer Service (BITS) step to copy zip file from source to destination under Teamcity build step?

There is a scenario in which I have to define a build step under Teamcity deploy job configuration. Wherein a compressed file needs to copy from shared drive to udeploy. But firstly I am trying to copy to local drive(WINDOWS OS) for testing. I am…
user2781150
  • 179
  • 1
  • 2
  • 10
0
votes
1 answer

BITS error codes

I'm writing an application updater that pulls installation package from our distribution web site to the user's PC using the background intelligent download service facility. More or less everything is working fine now but I'm having a bit of…
Stephane
  • 3,173
  • 3
  • 29
  • 42
0
votes
0 answers

Background Intelligent Transfer Service , the same network, how to set remoteURL

I am working with Background Intelligent Transfer Service(BITS) and with files from the same computer it works well for example: remoteURL = C:\file.wav localFile = C\Debug\file.wav . But my question how to set remoteURL with network with 2…
0
votes
1 answer

How to Delay Complete-BitsTransfer until Transfer Complete?

The following bits transfer starts a bunch of bits jobs, which work perfectly when I manually complete the transfer later: Get-BitsTransfer | Complete-BitsTransfer My attempt to script a delay before complete is not working. The While is not…
STWilson
  • 1,538
  • 2
  • 16
  • 26
0
votes
1 answer

Start-BitsTransfer doesn't work with winRM protocol

Hy, I try to launch Start-BitsTransfer command with a Rundeck Job. I have the error : The remote use of BITS is not supported. I launch some powershell commands with succes. Thanks
Samuel_
  • 177
  • 3
  • 16
0
votes
1 answer

Start-BitsTransfer's Destination field is not mandatory

I had a bug in a script where I'd specified -Description $dest instead of -Destination $dest on a call to Start-BitsTransfer. It didn't error / ran quickly for a small file and took a while for a large one. As such I think the file was copied to my…
JohnLBevan
  • 22,735
  • 13
  • 96
  • 178
0
votes
1 answer

Download large files from Owin self-hosted web service

I am currently working on an Owin self-hosted web service that runs on my machine and that allows peers (other machines) to download files from its virtual directory with microsoft's BITS. The downloads will work with relatively small files, but…
Chatonne
  • 64
  • 2
  • 11
0
votes
1 answer

Using BITS (Background Intelligent Transfer Service) from C#

I'd like to write some code that uses BITS for copying very large files between disks on the same server (the second disk being a SAN level clone\snapshot). I looked into BITS as i thought it would be a good way to get progress\percentage complete…
hobgadling
  • 131
  • 2
  • 10
0
votes
1 answer

Download image from a website using Batch

I have a .bat file that is supposed to download an image from a website and save it somewhere on your computer using Bitsadmin, but whenever I try to run it, I get this error: DISPLAY: JOB TYPE: DOWNLOAD STATE: ERROR PRIORITY: NORMAL FILES: 0 / 1…
Ervin
  • 1
  • 2
0
votes
1 answer

BITS Uploads in IIS over HTTPS

I'm curious as to whether there are any known problems with trying to run the BITS Uploads extension on a web server running over HTTPS. I have an extension set up, with the BITS-Sessions sub-folder automatically created. If I try and upload a file…
Robbie C
  • 51
  • 2
  • 11
0
votes
1 answer

File upload using BITS (Background Intelligent Transfer Service) and AJAX

does anyone know if it is possible to do a file upload using the BITS protocoll? The protocol is HTML1.1, so in theory it should be possible. Any ideas are appriciated. Thanks, . Ivar
Ivar
  • 1
  • 2
0
votes
1 answer

start download from website with powershell commandlet ( using BITS transfer)

I have configured IIS server, where its running on localhost for now. i need to download files present in the IIS directory with help of Powershell commandlet. i tried Background intelligent transfer service.. like Start-BitsTransfer -Asynchronous…
Kaustubh_Kharche
  • 725
  • 3
  • 13
  • 34