text
stringlengths
0
4.23k
usage
Sets the proxy usage, including:PRECONFIG. Use the owner's Internet Explorer defaults.NO_PROXY. Don't use a proxy server.OVERRIDE. Use an explicit proxy list and bypass list. The proxy list and proxy bypass information must follow.AUTODETECT. Automatically detects proxy settings.
list
Used when the Usage parameter is set to OVERRIDE. Must contain a comma-delimited list of proxy servers to use.
bypass
Used when the Usage parameter is set to OVERRIDE. Must contain a space-delimited list of host names or IP addresses, or both, for which transfers are not to be routed through a proxy. This can be <local> to refer to all servers on the same LAN. Values of NULL may be used for an empty proxy bypass list.
<local>
Examples
To set the proxy settings using the various usage options for the job named myDownloadJob:
bitsadmin /setproxysettings myDownloadJob PRECONFIG
bitsadmin /setproxysettings myDownloadJob NO_PROXY
bitsadmin /setproxysettings myDownloadJob OVERRIDE proxy1:80
bitsadmin /setproxysettings myDownloadJob OVERRIDE proxy1,proxy2,proxy3 NULL
bitsadmin setreplyfilename
Specifies the path of the file that contains the server upload-reply.
Note
This command isn't supported by BITS 1.2 and earlier.
Syntax
bitsadmin /setreplyfilename <job> <file_path>
Parameters
Parameter
Description
job
The job's display name or GUID.
file_path
Location to put the server upload-reply.
Examples
To set the upload-reply filename file path for the job named myDownloadJob:
bitsadmin /setreplyfilename myDownloadJob c:\upload-reply
bitsadmin setsecurityflags
Sets security flags for HTTP to determine if BITS should check the certificate revocation list, ignore certain certificate errors, and define the policy to use when a server redirects the HTTP request. The value is an unsigned integer.
Syntax
bitsadmin /setsecurityflags <job> <value>
Parameters
Parameter
Description
job
The job's display name or GUID.
value
Can include one or more of the following notification flags, including:Set the least significant bit to enable CRL Check.Set the 2nd bit from the right to ignore incorrect common names in the server certificate.Set the 3rd bit from the right to ignore incorrect dates in the server certificate.Set the 4th bit from the right to ignore incorrect certification authorities in the server certificate.Set the 5th bit from the right to ignore incorrect usage of the server certificate.Set the 9th through the 11th bits from the right to implement your specified redirection policy, including:0,0,0. Redirects are automatically allowed.0,0,1. Remote name in the IBackgroundCopyFile interface is updated if a redirect occurs.0,1,0. BITS fails the job if a redirect occurs.Set the 12th bit from the right to allow redirection from HTTPS to HTTP.
Examples
To set the security flags to enable a CRL check for the job named myDownloadJob:
bitsadmin /setsecurityflags myDownloadJob 0x0001
bitsadmin setvalidationstate
Sets the content validation state of the given file within the job.
Syntax
bitsadmin /setvalidationstate <job> <file_index> <TRUE|FALSE>
Parameters
Parameter
Description
Job
The job's display name or GUID.
file_index
Starts at 0.
TRUE or FALSE
TRUE turns on content validation for the specified file, while FALSE turns it off.