Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 19 additions & 1 deletion docset/winserver2019-ps/bitstransfer/Start-BitsTransfer.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Start-BitsTransfer [-Asynchronous] [-Authentication <String>] [-Credential <PSCr
[-TransferPolicy <CostStates>] [-UseStoredCredential <AuthenticationTargetValue>]
[-ProxyAuthentication <String>] [-ProxyBypass <String[]>] [-ProxyCredential <PSCredential>]
[-ProxyList <Uri[]>] [-ProxyUsage <String>] [-RetryInterval <Int32>] [-RetryTimeout <Int32>]
[-Source] <String[]> [-Suspended] [-TransferType <String>] [-WhatIf] [-Confirm] [<CommonParameters>]
[-SecurityFlags <String>] [-Source] <String[]> [-Suspended] [-TransferType <String>] [-WhatIf] [-Confirm] [<CommonParameters>]
```

## DESCRIPTION
Expand Down Expand Up @@ -486,6 +486,24 @@ Accept pipeline input: False
Accept wildcard characters: False
```

### -SecurityFlags
Specifies 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.

Note: This parameter is only available in Windows 10.

```yaml
Type: String
Parameter Sets: (All)
Aliases:
Accepted values: RedirectPolicyAllowSilent, EnableCRLCheck, IgnoreCertCNInvalid, IgnoreCertDateInvalid, IgnoreUnknownCA, IgnoreCertWrongUsage, RedirectPolicyAllowReport, RedirectPolicyDisallow, RedirectPolicyAllowHttpsToHttp

Required: False
Position: Named
Default value: None
Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False
```

### -Source
Specifies the source location and the names of the files that you want to transfer.
The source file names are paired with the corresponding destination file names.
Expand Down