text
stringlengths
0
4.23k
The name of the file on the local computer. Localname must contain an absolute path to the file.
Examples
To add a file to the job:
bitsadmin /addfile myDownloadJob http://downloadsrv/10mb.zip c:\10mb.zip
Repeat this call for each file to add. If multiple jobs use myDownloadJob as their name, you must replace myDownloadJob with the job's GUID to uniquely identify the job.
bitsadmin addfileset
Adds one or more files to the specified job.
Syntax
bitsadmin /addfileset <job> <textfile>
Parameters
Parameter
Description
job
The job's display name or GUID.
textfile
A text file, each line of which contains a remote and a local file name. Note: Names must space-delimited. Lines starting with a # character are treated as a comment.
#
Examples
bitsadmin /addfileset files.txt
bitsadmin addfilewithranges
Adds a file to the specified job. BITS downloads the specified ranges from the remote file. This switch is valid only for download jobs.
Syntax
bitsadmin /addfilewithranges <job> <remoteURL> <localname> <rangelist>
Parameters
Parameter
Description
job
The job's display name or GUID.
remoteURL
URL of the file on the server.
localname
Name of the file on the local computer. Must contain an absolute path to the file.
rangelist
Comma-delimited list of offset:length pairs. Use a colon to separate the offset value from the length value. For example, a value of 0:100,2000:100,5000:eof tells BITS to transfer 100 bytes from offset 0, 100 bytes from offset 2000, and the remaining bytes from offset 5000 to the end of the file.
0:100,2000:100,5000:eof
Remarks
The token eof is a valid length value within the offset and length pairs in the <rangelist>. It instructs the service to read to the end of the specified file.
<rangelist>
The addfilewithranges command will fail with error code 0x8020002c, if a zero-length range is specified along with another range using same offset, such as:
addfilewithranges
c:\bits>bitsadmin /addfilewithranges j2 http://bitsdc/dload/1k.zip c:\1k.zip 100:0,100:5
c:\bits>bitsadmin /addfilewithranges j2 http://bitsdc/dload/1k.zip c:\1k.zip 100:0,100:5
Error message: Unable to add file to job - 0x8020002c. The list of byte ranges contains some overlapping ranges, which are not supported.
Workaround: Don't specify the zero-length range first. For example, use bitsadmin /addfilewithranges j2 http://bitsdc/dload/1k.zip c:\1k.zip 100:5,100:0
bitsadmin /addfilewithranges j2 http://bitsdc/dload/1k.zip c:\1k.zip 100:5,100:0
Examples
To transfer 100 bytes from offset 0, 100 bytes from offset 2000, and the remaining bytes from offset 5000 to the end of the file:
bitsadmin /addfilewithranges http://downloadsrv/10mb.zip c:\10mb.zip 0:100,2000:100,5000:eof
404 - Page not found
We couldn't find this page. You can try signing in, or choosing from the relevant search results below:
We couldn't find this page. You can try changing directories, or choosing from the relevant search results below:
bitsadmin cache and delete
Deletes a specific cache entry.
Syntax
bitsadmin /cache /delete recordID
Parameters
Parameter
Description
recordID
The GUID associated with the cache entry.