Bitsadmin /addfilewithranges


Applies To: Windows Server 2008 R2,Windows Server 2008,Windows Vista

Adds a file to the specified job. BITS downloads the specified ranges from the remote file.

Syntax


Copy Code

bitsadmin /AddFileWithRanges <Job> <RemoteURL> <LocalName> <RangeList>

Parameters

Parameter

Description

Job

The job's display name or GUID

RemoteURL

RemoteURL is the URL of the file on the server.

LocalName

LocalName is the name of the file on the local computer. LocalName must contain an absolute path to the file.

RangeList

RangeList is a comma-delimited list of offset and length pairs. Use a colon to separate the offset value from the length value.

More Information

Examples

The following example 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.


Copy Code

C:\>bitsadmin /addfilewithranges http://downloadsrv/10mb.zip c:\10mb.zip "0:100,2000:100,5000:eof"

Additional references

Command-Line Syntax Key