Software:Background Intelligent Transfer Service

From HandWiki
Short description: Component of Microsoft Windows
Background Intelligent Transfer Service (BITS)
Developer(s)Microsoft
Initial releaseOctober 2001; 22 years ago (2001-10)
Stable release
10.3 / December 7, 2019; 4 years ago (2019-12-07)
Operating systemMicrosoft Windows
TypeDownload manager
LicenseProprietary commercial software
Websitelearn.microsoft.com/en-us/windows/win32/bits/background-intelligent-transfer-service-portal

Background Intelligent Transfer Service (BITS) is a component of Microsoft Windows XP and later iterations of the operating systems, which facilitates asynchronous, prioritized, and throttled 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 System Center Configuration Manager to deliver software updates to clients, Microsoft's anti-virus scanner Microsoft Security Essentials (a later version of Windows Defender) to fetch signature updates, and is also used by Microsoft's instant messaging products to transfer files. BITS is exposed through the Component Object Model (COM).

Technology

BITS uses idle bandwidth to transfer data. Normally, BITS transfers data in the background, i.e., BITS will only transfer data whenever there is bandwidth which is not being used by other applications. BITS also supports resuming transfers in case of disruptions.

BITS version 1.0 supports only downloads. From version 1.5, BITS supports both downloads and uploads. Uploads require the IIS web server, with BITS server extension, on the receiving side.

Transfers

BITS transfers files on behalf of requesting applications asynchronously, i.e., once an application requests the BITS service for a transfer, it will be free to do any other task, or even terminate. The transfer will continue in the background as long as the network connection is there and the job owner is logged in. BITS jobs do not transfer when the job owner is not signed in.

BITS suspends any ongoing transfer when the network connection is lost or the operating system is shut down. It resumes the transfer from where it left off when (the computer is turned on later and) the network connection is restored. BITS supports transfers over SMB, HTTP and HTTPS.

Bandwidth

BITS attempts to use only spare bandwidth. For example, when applications use 80% of the available bandwidth, BITS will use only the remaining 20%. BITS constantly monitors network traffic for any increase or decrease in network traffic and throttles its own transfers to ensure that other foreground applications (such as a web browser) get the bandwidth they need. Note that BITS does not necessarily measure the actual bandwidth. BITS versions 3.0 and up will use Internet Gateway Device counters, if available, to more accurately calculate available bandwidth. Otherwise, BITS will use the speed as reported by the NIC to calculate bandwidth. This can lead to bandwidth calculation errors, for example when a fast network adapter (10 Mbit/s) is connected to the network via a slow link (56 kbit/s).[1]

Jobs

BITS uses a queue to manage file transfers. A BITS session has to be started from an application by creating a Job. A job is a container, which has one or more files to transfer. A newly created job is empty. Files must be added, specifying both the source and destination URIs. While a download job can have any number of files, upload jobs can have only one. Properties can be set for individual files. Jobs inherit the security context of the application that creates them. BITS provides API access to control jobs. A job can be programmatically started, stopped, paused, resumed, and queried for status. Before starting a job, a priority has to be set for it to specify when the job is processed relative to other jobs in the transfer queue. By default, all jobs are of Normal priority. Jobs can optionally be set to High, Low, or Foreground priority. Background transfers are optimized by BITS,1 which increases and decreases (or throttles) the rate of transfer based on the amount of idle network bandwidth that is available. If a network application begins to consume more bandwidth, BITS decreases its transfer rate to preserve the user's interactive experience, except for Foreground priority downloads.

Scheduling

BITS schedules each job to receive only a finite time slice, for which only that job is allowed to transfer, before it is temporarily paused to give another job a chance to transfer. Higher priority jobs get a higher chunk of time slice. BITS uses round-robin scheduling to process jobs in the same priority and to prevent a large transfer job from blocking smaller jobs.

When a job is newly created, it is automatically suspended (or paused). It has to be explicitly resumed to be activated. Resuming moves the job to the queued state. On its turn to transfer data, it first connects to the remote server and then starts transferring. After the job's time slice expires, the transfer is temporarily paused, and the job is moved back to the queued state. When the job gets another time slice, it has to connect again before it can transfer. When the job is complete, BITS transfers ownership of the job to the application that created it.

BITS includes a built-in mechanism for error handling and recovery attempts. Errors can be either fatal or transient; either moves a job to the respective state. A transient error is a temporary error that resolves itself after some time. For a transient error, BITS waits for some time and then retries. For fatal errors, BITS transfers control of the job to the creating application, with as much information regarding the error as it can provide.

Command-line interface tools

BITSAdmin command

BITSAdmin
Developer(s)Microsoft
Stable release
3.0
Operating systemMicrosoft Windows
TypeCommand
LicenseProprietary commercial software
Websitedocs.microsoft.com/en-us/windows-server/administration/windows-commands/bitsadmin

Microsoft provides a BITS Administration Utility (BITSAdmin) command-line utility to manage BITS jobs. The utility is part of Windows Vista and later.[2][3] It is also available as a part of the Windows XP Service Pack 2 Support Tools[4] or Windows Server 2003 Service Pack 1 Support Tools.[5]

Usage example:

C:\>bitsadmin /transfer myDownloadJob /download /priority normal https://example.com/file.zip C:\file.zip

PowerShell BitsTransfer

In Windows 7, the BITSAdmin utility is deprecated in favor of Windows PowerShell cmdlets.[6] The BitsTransfer PowerShell module provides eight cmdlets with which to manage BITS jobs.[7]

The following example is the equivalent of the BITSAdmin example above:

PS C:\> Start-BitsTransfer -Source "https://example.com/file.zip" -Destination "C:\file.zip" -DisplayName "myDownloadJob"

List of non-Microsoft applications that use BITS

  • AppSense – Uses BITS to install Packages on clients.
  • BITS Download Manager – A download manager for Windows that creates BITS Jobs.[8]
  • BITSync – An open source utility that uses BITS to perform file synchronization on Server Message Block network shares.[9]
  • Civilization V – Uses BITS to download mod packages.
  • Endless OS installer for Windows – Uses BITS to download OS images.[10]
  • Eve Online – Uses BITS to download all the patches post-Apocrypha (March 10, 2009). It is also now used in the client repair tool.
  • Some Google services including Chrome, Gears, Pack, Flutter updater and YouTube Uploader used BITS.[citation needed]
  • Firefox (since version 68) for updates.[11]
  • KBOX Systems Management Appliance – A systems management appliance that can use BITS to deliver files to Windows systems.
  • RSS Bandit – Uses BITS to download attachments in web feeds.
  • Oxygen media platform – Uses BITS to distribute Media Content and Software Updates.[12]
  • SharpBITS – An open source download manager for Windows that handles BITS jobs.[13]
  • WinBITS – An open source Downloader for Windows that downloads files by creating BITS Jobs.[14]
  • Novell ZENworks Desktop Management – A systems management software that can use BITS to deliver application files to workstations.[15]
  • Specops Deploy/App – A systems management software that (when available) uses BITS for delivering packages to the clients in the background.[16]

See also

References

  1. "MSDN BITS Network Bandwidth". https://msdn.microsoft.com/en-us/library/aa363133%28v=vs.85%29.aspx. 
  2. Satran, Michael; Smith, Peter (5 March 2019). "BITSAdmin tool". Microsoft. https://docs.microsoft.com/en-us/windows/win32/bits/bitsadmin-tool. 
  3. Ross, Elizabeth; White, Steven; Poggemeyer, Liza; Lee, Thomas; Plett, Corey (16 October 2017). "bitsadmin". Microsoft. https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/bitsadmin. 
  4. "Windows XP Service Pack 2 Support Tools". Microsoft. 10 August 2004. https://www.microsoft.com/en-us/download/details.aspx?id=18546. 
  5. "Windows Server 2003 Service Pack 1 32-bit Support Tools". Microsoft. 30 March 2005. https://www.microsoft.com/en-us/download/details.aspx?id=7911. 
  6. "Manage BITS (Background Intelligent Transfer Service) with Windows PowerShell". TechNet Magazine. Microsoft. https://docs.microsoft.com/en-us/previous-versions/technet-magazine/ff382721(v=msdn.10). 
  7. "BitsTransfer". Microsoft. https://docs.microsoft.com/en-us/powershell/module/bitstransfer/?view=win10-ps. 
  8. "BITS Download Manager". http://www.request-response.com/blog/PermaLink,guid,20f94f47-6ea2-46a8-97b0-bdfdea4fb4f8.aspx. 
  9. "BITSync". http://kli.dk/2008/01/19/bitsync/. 
  10. Endless Installer for Windows DownloadManager class
  11. "Firefox 68.0, See All New Features, Updates and Fixes". Mozilla. https://www.mozilla.org/en-US/firefox/68.0/releasenotes/. 
  12. Oxygen media platform
  13. "SharpBITS". http://sharpbits.codeplex.com/. 
  14. "WinBITS". http://sourceforge.net/projects/winbits/. 
  15. "Zenworks 7". http://www.novell.com/documentation/zenworks7/dm7install/index.html?page=%2Fdocumentation%2Fzenworks7%2Fdm7install%2Fdata%2Fb3qayj3.html. 
  16. "Specops Deploy/App". http://www.specopssoft.com/. 

External links