File tree 1 file changed +16
-4
lines changed
docset/winserver2022-ps/adcsadministration
1 file changed +16
-4
lines changed Original file line number Diff line number Diff line change @@ -53,6 +53,18 @@ PS C:\> Remove-CAAuthorityInformationAccess -Uri "http://www.contoso.com/pki/orc
53
53
54
54
This command removes all AIA and OCSP entries that match the URL ` http://www.contoso.com/pki/orca1.crt ` .
55
55
56
+ ### Example 4: Remove all AIA entries
57
+
58
+ ``` powershell
59
+ $AIA = Get-CAAuthorityInformationAccess
60
+ $AIA | Remove-CAAuthorityInformationAccess
61
+ ```
62
+
63
+ This example removes all AIA entries
64
+
65
+ The first command gets the certificate authority information and stores the information in the variable named $AIA.
66
+
67
+ The second command removes all the AIA entries that are stored in the $AIA variable.
56
68
## PARAMETERS
57
69
58
70
### -AddToCertificateAia
@@ -61,7 +73,7 @@ Indicates that the cmdlet adds the AIA URI.
61
73
``` yaml
62
74
Type : SwitchParameter
63
75
Parameter Sets : RemoveAsAIA
64
- Aliases :
76
+ Aliases :
65
77
66
78
Required : False
67
79
Position : Named
@@ -76,7 +88,7 @@ Indicates that the cmdlet adds an Online Responder's URI.
76
88
` ` ` yaml
77
89
Type : SwitchParameter
78
90
Parameter Sets : RemoveAsOCSP
79
- Aliases :
91
+ Aliases :
80
92
81
93
Required : False
82
94
Position : Named
@@ -106,7 +118,7 @@ Forces the command to run without asking for user confirmation.
106
118
` ` ` yaml
107
119
Type : SwitchParameter
108
120
Parameter Sets : (All)
109
- Aliases :
121
+ Aliases :
110
122
111
123
Required : False
112
124
Position : Named
@@ -122,7 +134,7 @@ This information is added to the CA properties and registry.
122
134
` ` ` yaml
123
135
Type : String
124
136
Parameter Sets : (All)
125
- Aliases :
137
+ Aliases :
126
138
127
139
Required : True
128
140
Position : 1
You can’t perform that action at this time.
0 commit comments