@@ -96,8 +96,7 @@ This example updates the signing certificate of the SharePoint security token se
96
96
97
97
### --------------------EXAMPLE 2---------------------
98
98
```
99
- C:\PS>$stsCert = New-Object System.Security.Cryptography.X509Certificates.X509Certificate2 "c:\sts.pfx","a",20
100
-
99
+ $stsCert = New-Object System.Security.Cryptography.X509Certificates.X509Certificate2 "c:\sts.pfx","a",20
101
100
Set-SPSecurityTokenServiceConfig -ImportSigningCertificate $stsCert
102
101
```
103
102
@@ -107,7 +106,7 @@ This example imports the signing certificate for the SharePoint STS identity pro
107
106
## PARAMETERS
108
107
109
108
### -QueueSigningCertificateThumbprint
110
- {{ Fill QueueSigningCertificateThumbprint Description }}
109
+ Sets the certificate with the provided thumbprint as the queued signing certificate.
111
110
112
111
``` yaml
113
112
Type : String
@@ -136,7 +135,7 @@ Accept wildcard characters: False
136
135
` ` `
137
136
138
137
### -RevokeSigningCertificateThumbprint
139
- {{ Fill RevokeSigningCertificateThumbprint Description }}
138
+ Revoke the signing certificate with the provided thumbprint.
140
139
141
140
` ` ` yaml
142
141
Type : String
@@ -247,7 +246,7 @@ Accept wildcard characters: False
247
246
248
247
# ## -MaxLogonTokenCacheItems
249
248
Specifies the maximum number of entries for the in-memory logon token cache.
250
- The default value is 10000 entries.
249
+ The default value is 250 entries.
251
250
252
251
The type must be a valid integer.
253
252
@@ -266,7 +265,7 @@ Accept wildcard characters: False
266
265
267
266
# ## -MaxServiceTokenCacheItems
268
267
Specifies the maximum number of entries for the in-memory service token cache.
269
- The default value is 10000 entries.
268
+ The default value is 250 entries.
270
269
271
270
The type must be a valid integer.
272
271
@@ -284,7 +283,7 @@ Accept wildcard characters: False
284
283
` ` `
285
284
286
285
# ## -QueueSigningCertificate
287
- {{ Fill QueueSigningCertificate Description }}
286
+ Sets the provided certificate as the queued signing certificate.
288
287
289
288
` ` ` yaml
290
289
Type: X509Certificate2
@@ -300,7 +299,7 @@ Accept wildcard characters: False
300
299
` ` `
301
300
302
301
# ## -QueueSigningCertificateStoreName
303
- {{ Fill QueueSigningCertificateStoreName Description }}
302
+ The store to search in when looking up a certificate to be set as the queued signing certificate by its thumbprint. Required if QueueSigningCertificateThumbprint was specified.
304
303
305
304
` ` ` yaml
306
305
Type: String
@@ -316,7 +315,7 @@ Accept wildcard characters: False
316
315
` ` `
317
316
318
317
# ## -RevokeSigningCertificate
319
- {{ Fill RevokeSigningCertificate Description }}
318
+ Revokes the signing certificate that matches the provided certificate.
320
319
321
320
` ` ` yaml
322
321
Type: X509Certificate2
@@ -332,7 +331,7 @@ Accept wildcard characters: False
332
331
` ` `
333
332
334
333
# ## -RevokeSigningCertificateStoreName
335
- {{ Fill RevokeSigningCertificateStoreName Description }}
334
+ The store to search when looking up a certificate to be revoked by its thumbprint. Required if the QueueSigningCertificateThumbprint was specified.
336
335
337
336
` ` ` yaml
338
337
Type: String
0 commit comments