To be compliant with security best practices, we have a requirement to disable RC4 ciphers.
I have investigated a way to achieve this and, found that I can disable it by editing the registry keys.
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Ciphers\RC4 128/128]
“Enabled”=dword:00000000
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Ciphers\RC4 40/128]
“Enabled”=dword:00000000
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Ciphers\RC4 56/128]
“Enabled”=dword:00000000
Also I have found that I can remove the cipher suites that contains RC4 by editing the GPO, Computer Configuration > Administrative Templates > Network > SSL Configuration Settings,
My question is: What is the best way to remove support for a ciphers. By deleting all the cipher suites that contain the cipher in the GPO or the only way to remove support for a cipher is via modifying the keys in regedit.