Skip to content

Commit 9961e27

Browse files
authored
Merge branch 'master' into startlayout-v-tishe
2 parents e8af706 + 31f953a commit 9961e27

17 files changed

+478
-205
lines changed

docset/winserver2019-ps/bitstransfer/Start-BitsTransfer.md

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Start-BitsTransfer [-Asynchronous] [-Authentication <String>] [-Credential <PSCr
2121
[-TransferPolicy <CostStates>] [-UseStoredCredential <AuthenticationTargetValue>]
2222
[-ProxyAuthentication <String>] [-ProxyBypass <String[]>] [-ProxyCredential <PSCredential>]
2323
[-ProxyList <Uri[]>] [-ProxyUsage <String>] [-RetryInterval <Int32>] [-RetryTimeout <Int32>]
24-
[-Source] <String[]> [-Suspended] [-TransferType <String>] [-WhatIf] [-Confirm] [<CommonParameters>]
24+
[-SecurityFlags <String>] [-Source] <String[]> [-Suspended] [-TransferType <String>] [-WhatIf] [-Confirm] [<CommonParameters>]
2525
```
2626

2727
## DESCRIPTION
@@ -486,6 +486,24 @@ Accept pipeline input: False
486486
Accept wildcard characters: False
487487
```
488488

489+
### -SecurityFlags
490+
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.
491+
492+
Note: This parameter is only available in Windows 10.
493+
494+
```yaml
495+
Type: String
496+
Parameter Sets: (All)
497+
Aliases:
498+
Accepted values: RedirectPolicyAllowSilent, EnableCRLCheck, IgnoreCertCNInvalid, IgnoreCertDateInvalid, IgnoreUnknownCA, IgnoreCertWrongUsage, RedirectPolicyAllowReport, RedirectPolicyDisallow, RedirectPolicyAllowHttpsToHttp
499+
500+
Required: False
501+
Position: Named
502+
Default value: None
503+
Accept pipeline input: True (ByPropertyName)
504+
Accept wildcard characters: False
505+
```
506+
489507
### -Source
490508
Specifies the source location and the names of the files that you want to transfer.
491509
The source file names are paired with the corresponding destination file names.

docset/winserver2022-ps/adcsadministration/ADCSAdministration.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,10 @@ Adds a certificate template to the CA.
2626
### [Backup-CARoleService](./Backup-CARoleService.md)
2727
Backs up the CA database and private key information.
2828

29-
### [Confirm-CAEndorsementKeyInfo](./Confirm-CAEndorsementKeyInfo.md)
29+
### [Confirm-CAAttestationIdentityKeyInfo](Confirm-CAAttestationIdentityKeyInfo.md)
30+
Checks whether the local CA trusts secure hardware for identity key attestation.
31+
32+
### [Confirm-CAEndorsementKeyInfo](Confirm-CAEndorsementKeyInfo.md)
3033
Checks whether the local CA trusts secure hardware for key attestation.
3134

3235
### [Get-CAAuthorityInformationAccess](./Get-CAAuthorityInformationAccess.md)

docset/winserver2022-ps/adcsadministration/Add-CAAuthorityInformationAccess.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -180,8 +180,12 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
180180
181181
## INPUTS
182182
183+
### Microsoft.CertificateServices.Administration.Commands.CA.AuthorityInformationAccess
184+
183185
### System.String
184186
187+
### System.Management.Automation.SwitchParameter
188+
185189
## OUTPUTS
186190
187191
### Microsoft.CertificateServices.Administration.Commands.CA.AuthorityInformationAccessResult

docset/winserver2022-ps/adcsadministration/Add-CACrlDistributionPoint.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -231,6 +231,8 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
231231
232232
### System.String
233233
234+
### System.Management.Automation.SwitchParameter
235+
234236
## OUTPUTS
235237
236238
### Microsoft.CertificateServices.Administration.Commands.CA.CrlDistributionPointResult

docset/winserver2022-ps/adcsadministration/Add-CATemplate.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ There is only one parameter for this cmdlet, *Name*, and it can only accept a si
114114
115115
## OUTPUTS
116116
117-
### None
117+
### System.Object
118118
119119
## NOTES
120120
* To perform this procedure, you must be a member of the Domain Admins group or the Enterprise Admins group in AD DS, or you must have been delegated the appropriate authority. As a security best practice, consider using Run as to perform this procedure.

docset/winserver2022-ps/adcsadministration/Backup-CARoleService.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -175,8 +175,16 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
175175

176176
## INPUTS
177177

178+
### System.String
179+
180+
### System.Management.Automation.SwitchParameter
181+
182+
### System.Security.SecureString
183+
178184
## OUTPUTS
179185

186+
### System.Void
187+
180188
## NOTES
181189

182190
## RELATED LINKS
Lines changed: 115 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,115 @@
1+
---
2+
description: Checks whether the local CA trusts secure hardware for identity key attestation.
3+
external help file: Microsoft.CertificateServices.Administration.Commands.dll-Help.xml
4+
Module Name: ADCSAdministration
5+
online version: https://docs.microsoft.com/powershell/module/adcsadministration/confirm-caattestationidentitykeyinfo?view=windowsserver2022-ps&wt.mc_id=ps-gethelp
6+
schema: 2.0.0
7+
title: Confirm-CAAttestationIdentityKeyInfo
8+
---
9+
10+
# Confirm-CAAttestationIdentityKeyInfo
11+
12+
## SYNOPSIS
13+
Checks whether the local CA trusts secure hardware for identity key attestation.
14+
15+
## SYNTAX
16+
17+
### PublicKeyHash
18+
```
19+
Confirm-CAAttestationIdentityKeyInfo [-PublicKeyHash] <String> [<CommonParameters>]
20+
```
21+
22+
### Certificate
23+
```
24+
Confirm-CAAttestationIdentityKeyInfo [-Certificate] <X509Certificate2> [<CommonParameters>]
25+
```
26+
27+
## DESCRIPTION
28+
The **Confirm-CAAttestationIdentityKeyInfo** cmdlet checks whether the local certification authority (CA) trusts secure hardware, such as a Trusted Platform Module (TPM), for identity key attestation. The Attestation Identity Key (AIK) replaces the Endorsement Key as an identity for the TPM. An Attestation Identity Key is permanently embedded in the security hardware. The public portion of the key helps to recognize genuine security hardware.
29+
30+
This cmdlet verifies whether the AIK public certificate connects through a certificate chain to an anchor that the CA trusts. Specify an X509 certificate by using the **Certificate** parameter.
31+
32+
This cmdlet checks whether the AIK public key exists as a file in a folder configured at the local CA for key attestation. Specify the public key by using the **PublicKeyHash** parameter.
33+
34+
## EXAMPLES
35+
36+
### Example 1: Check certificate
37+
```
38+
Confirm-CAAttestationIdentityKeyInfo -Certificate Contoso87.cer
39+
40+
True
41+
```
42+
43+
This command checks whether the certificate `Contoso87.cer` connects, by using a certificate chain, to a trusted anchor.
44+
This example returns a value of `$True`.
45+
46+
### Example 2: Check a key
47+
```
48+
Confirm-CAAttestationIdentityKeyInfo -PublicKeyHash "0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef"
49+
50+
False
51+
```
52+
53+
The command checks for the public certificate specified as an SHA-256 hash code.
54+
This example returns a value of `$False`.
55+
The CA does not have this public key.
56+
57+
## PARAMETERS
58+
59+
### -Certificate
60+
Specifies an X509 public key certificate issued to secure hardware.
61+
62+
```yaml
63+
Type: X509Certificate2
64+
Parameter Sets: Certificate
65+
Aliases:
66+
67+
Required: True
68+
Position: 1
69+
Default value: None
70+
Accept pipeline input: True (ByPropertyName, ByValue)
71+
Accept wildcard characters: False
72+
```
73+
74+
### -PublicKeyHash
75+
Specifies an Attestation Identity Key (AIK) public key of the secure hardware, as the result of the SHA-256 hash algorithm.
76+
This value is a 64 character hexadecimal string.
77+
78+
```yaml
79+
Type: String
80+
Parameter Sets: PublicKeyHash
81+
Aliases:
82+
83+
Required: True
84+
Position: 1
85+
Default value: None
86+
Accept pipeline input: True (ByPropertyName, ByValue)
87+
Accept wildcard characters: False
88+
```
89+
90+
### CommonParameters
91+
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216).
92+
93+
## INPUTS
94+
95+
### System.String
96+
97+
### System.Security.Cryptography.X509Certificates.X509Certificate2
98+
99+
## OUTPUTS
100+
101+
### System.Boolean
102+
103+
## NOTES
104+
105+
## RELATED LINKS
106+
107+
[Confirm-CAEndorsementKeyInfo](Confirm-CAEndorsementKeyInfo.md)
108+
109+
[Add-CAAuthorityInformationAccess](Add-CAAuthorityInformationAccess.md)
110+
111+
[Add-CACrlDistributionPoint](Add-CACrlDistributionPoint.md)
112+
113+
[Backup-CARoleService](Backup-CARoleService.md)
114+
115+
[Confirm-CAEndorsementKeyInfo](Confirm-CAEndorsementKeyInfo.md)

docset/winserver2022-ps/adcsadministration/Confirm-CAEndorsementKeyInfo.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,9 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
9797
9898
## INPUTS
9999
100-
### System.String, System.Security.Cryptography.X509Certificate2
100+
### System.String
101+
102+
### System.Security.Cryptography.X509Certificates.X509Certificate2
101103
102104
## OUTPUTS
103105

docset/winserver2022-ps/adcsadministration/Remove-CAAuthorityInformationAccess.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -153,6 +153,8 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
153153
154154
### System.String
155155
156+
### System.Management.Automation.SwitchParameter
157+
156158
## OUTPUTS
157159
158160
### Microsoft.CertificateServices.Administration.Commands.CA.AuthorityInformationAccessResult

docset/winserver2022-ps/adcsadministration/Remove-CACrlDistributionPoint.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -206,6 +206,8 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
206206
207207
### System.String
208208
209+
### System.Management.Automation.SwitchParameter
210+
209211
## OUTPUTS
210212
211213
### Microsoft.CertificateServices.Administration.Commands.CA.CrlDistributionPointResult

0 commit comments

Comments
 (0)