For the Audit & Remediation query as follows
SELECT
reg.key,
reg.name,
reg.data as Value,
CASE
WHEN reg.data = 1 THEN 'TLS 1.2 Protocol disabled'
WHEN reg.data = 0 THEN 'TLS 1.2 not disabled by default'
ELSE 'Registry key not found' END DisabledByDefault
FROM registry reg WHERE PATH LIKE 'HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.2\Client\DisabledByDefault';
the results mean
0 | TLS 1.2 is not disabled on this Device |
1 | TLS 1.2 is disabled on the Device |
"Registry key not found" | This OS does not have this registry key by default |