Skip to content

Commit 2cffa8d

Browse files
authored
Add regedit copy-and-paste script
The registry changes are not presented in a friendly manner because an administrator cannot quickly copy-and-paste the values into a .reg file. This PR gives a version they can do that with.
1 parent 201799e commit 2cffa8d

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

articles/active-directory/app-proxy/application-proxy-connectors.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,25 @@ The server needs to have TLS 1.2 enabled before you install the Application Prox
3939
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] "SchUseStrongCrypto"=dword:00000001
4040
```
4141
42+
A `regedit` file you can use to set these values follows:
43+
44+
```
45+
REGEDIT4
46+
47+
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.2]
48+
49+
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.2\Client]
50+
"DisabledByDefault"=dword:00000000
51+
"Enabled"=dword:00000001
52+
53+
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.2\Server]
54+
"DisabledByDefault"=dword:00000000
55+
"Enabled"=dword:00000001
56+
57+
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\.NETFramework\v4.0.30319]
58+
"SchUseStrongCrypto"=dword:00000001
59+
```
60+
4261
1. Restart the server
4362
4463
For more information about the network requirements for the connector server, see [Get started with Application Proxy and install a connector](application-proxy-add-on-premises-application.md).

0 commit comments

Comments
 (0)