nanosn
1
I am trying to find a solution to push out registry keys out
“HKLM\System\CurrentControlSet\Control\SecurityProviders\SChannel\Protocols\TLS 1.1\Server” /v Enabled /t REG_DWORD /d 1 /f
HKLM\System\CurrentControlSet\Control\SecurityProviders\SChannel\Protocols\TLS 1.1\Server" /v DisabledByDefault /t REG_DWORD /d 0 /f
any suggestions ?
Sean
2
Hi nanosn,
You can do that via the regset Action Script command like so:
regset "[HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\SecurityProviders\SChannel\Protocols\TLS 1.1\Server]" "Enabled"=dword:1
regset "[HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\SecurityProviders\SChannel\Protocols\TLS 1.1\Server]" "DisabledByDefault"=dword:0
There is not really a line break after the first double quotes, the webpage is just formatting it that way.
The current reference docs (including the Action Guide) can be found at ftp://public.dhe.ibm.com/software/tivoli/IEM/9.2/Platform/
In addition to the answer @Sean provided, there is a Windows Registry Wizard that simplifies the push of reg keys to clients.
I believe it provides the choice to give a .reg file or to change just individual keys.
The wizard should help simplify these changes going forward for you