Skip to content

Commit 6124419

Browse files
Merge pull request #843 from qizu0302/patch-2
Update Connect-SPConfigurationDatabase.md
2 parents 4b30b09 + 3460f06 commit 6124419

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed

sharepoint/sharepoint-server-ps/sharepoint-server/Connect-SPConfigurationDatabase.md

+34
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ Connects the local server computer to a farm.
2121
Connect-SPConfigurationDatabase [-DatabaseName] <String> [-SkipRegisterAsDistributedCacheHost]
2222
[-Passphrase] <SecureString> -DatabaseServer <String> [-AssignmentCollection <SPAssignmentCollection>]
2323
[-DatabaseCredentials <PSCredential>] [-DatabaseFailOverPartner <String>] [-LocalServerRole <SPServerRole>]
24+
[-DatabaseConnectionEncryption <SqlConnectionEncryptOption>] [-DatabaseServerCertificateHostName <String>]
2425
[<CommonParameters>]
2526
```
2627

@@ -192,6 +193,39 @@ Accept pipeline input: False
192193
Accept wildcard characters: False
193194
```
194195
196+
### -DatabaseConnectionEncryption
197+
Specifies whether TLS encryption is used for the connection between SharePoint and the database.
198+
Mandatory requires that TLS encryption is used. If TLS encryption can't be successfully negotiated, the connection will fail.
199+
Optional allows TLS encryption to be used. If the database server requires TLS encryption, then TLS encryption will be used. Otherwise, TLS encryption will not be used.
200+
Strict requires that TLS encryption is used with TDS 8.0, which is the strongest encryption configuration. If TLS encryption with TDS 8.0 can't be successfully negotiated, the connection will fail.
201+
Databases mounted to SharePoint before the Version 24H2 feature update was installed default to Optional encryption. If this parameter is not specified when mounting a new database to SharePoint after the Version 24H2 feature update is installed, the default is Mandatory.
202+
203+
```yaml
204+
Type: SqlConnectionEncryptOption
205+
Parameter Sets: (All)
206+
Aliases:
207+
Applicable: SharePoint Server Subscription Edition
208+
Required: True
209+
Position: Named
210+
Default value: Mandatory
211+
Accept pipeline input: True
212+
Accept wildcard characters: False
213+
```
214+
### -DatabaseServerCertificateHostName
215+
Sets the host name to use when validating the server certificate for the connection.
216+
217+
```yaml
218+
Type: String
219+
Parameter Sets: (All)
220+
Aliases:
221+
Applicable: SharePoint Server Subscription Edition
222+
Required: False
223+
Position: Named
224+
Default value: None
225+
Accept pipeline input: True
226+
Accept wildcard characters: False
227+
```
228+
195229
### CommonParameters
196230
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).
197231

0 commit comments

Comments
 (0)