Skip to content

Commit 3e5d4f0

Browse files
authored
Merge branch 'master' into maesfaha/UpdateSetAndRemove
2 parents fa2849b + e421dd4 commit 3e5d4f0

File tree

1 file changed

+9
-10
lines changed

1 file changed

+9
-10
lines changed

sharepoint/sharepoint-ps/sharepoint-server/Set-SPSecurityTokenServiceConfig.md

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -96,8 +96,7 @@ This example updates the signing certificate of the SharePoint security token se
9696

9797
### --------------------EXAMPLE 2---------------------
9898
```
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
101100
Set-SPSecurityTokenServiceConfig -ImportSigningCertificate $stsCert
102101
```
103102

@@ -107,7 +106,7 @@ This example imports the signing certificate for the SharePoint STS identity pro
107106
## PARAMETERS
108107

109108
### -QueueSigningCertificateThumbprint
110-
{{ Fill QueueSigningCertificateThumbprint Description }}
109+
Sets the certificate with the provided thumbprint as the queued signing certificate.
111110

112111
```yaml
113112
Type: String
@@ -136,7 +135,7 @@ Accept wildcard characters: False
136135
```
137136
138137
### -RevokeSigningCertificateThumbprint
139-
{{ Fill RevokeSigningCertificateThumbprint Description }}
138+
Revoke the signing certificate with the provided thumbprint.
140139
141140
```yaml
142141
Type: String
@@ -247,7 +246,7 @@ Accept wildcard characters: False
247246

248247
### -MaxLogonTokenCacheItems
249248
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.
251250

252251
The type must be a valid integer.
253252

@@ -266,7 +265,7 @@ Accept wildcard characters: False
266265

267266
### -MaxServiceTokenCacheItems
268267
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.
270269

271270
The type must be a valid integer.
272271

@@ -284,7 +283,7 @@ Accept wildcard characters: False
284283
```
285284

286285
### -QueueSigningCertificate
287-
{{ Fill QueueSigningCertificate Description }}
286+
Sets the provided certificate as the queued signing certificate.
288287

289288
```yaml
290289
Type: X509Certificate2
@@ -300,7 +299,7 @@ Accept wildcard characters: False
300299
```
301300

302301
### -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.
304303

305304
```yaml
306305
Type: String
@@ -316,7 +315,7 @@ Accept wildcard characters: False
316315
```
317316

318317
### -RevokeSigningCertificate
319-
{{ Fill RevokeSigningCertificate Description }}
318+
Revokes the signing certificate that matches the provided certificate.
320319

321320
```yaml
322321
Type: X509Certificate2
@@ -332,7 +331,7 @@ Accept wildcard characters: False
332331
```
333332

334333
### -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.
336335

337336
```yaml
338337
Type: String

0 commit comments

Comments
 (0)