Hi.
@ageorgiev can you help me here?
Now this is getting complicated, I need to relevenace by these register keys:
āHKLM:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\SSL 2.0\Serverā
āHKLM:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\SSL 3.0\Serverā
āHKLM:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\SSL 2.0\Clientā
āHKLM:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\SSL 3.0\Clientā
Where each of this does not has these Keys or the value of each is different of :
Enabled = 0 Dword
DisabledByDefault = 1 Dword
I did this but it doesnāt work as expected:
(name of it contains "Win2012") of operating system
AND (exist key "SSL 2.0\Server" whose (exist value "Enabled" whose (it as string != "0") of it) of it
OR (exist key "SSL 2.0\Server" whose (exist value "DisabledByDefault" whose (it as string != "1") of it) of it
OR exist key "SSL 3.0\Server" whose (exist value "Enabled" whose (it as string != "0") of it) of it)
OR exist key "SSL 3.0\Server" whose (exist value "DisabledByDefault" whose (it as string != "1") of it) of it)
of key "HKLM\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols" of registry
OR (not exist key "SSL 2.0\Server" of it OR not exist key "SSL 3.0\Server" of it) of key "HKLM\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols" of registry
OR (exist key "SSL 2.0\Client" whose (exist value "Enabled" whose (it as string != "0") of it) of it
OR (exist key "SSL 2.0\Client" whose (exist value "DisabledByDefault" whose (it as string != "1") of it) of it
OR exist key "SSL 3.0\Client" whose (exist value "Enabled" whose (it as string != "0") of it) of it)
OR exist key "SSL 3.0\Client" whose (exist value "DisabledByDefault" whose (it as string != "1") of it) of it)
of key "HKLM\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols" of registry
OR (not exist key "SSL 2.0\Client" of it OR not exist key "SSL 3.0\Client" of it) of key "HKLM\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols" of registry
I will apreciate a lot your help.
Thanks in advance,
Angel.