so in my registry i have the entry under "LocalMachine\SOFTWARE\Microsoft\Windows\CurrentVersion\Run\" called "COMODO Internet Security" which is my firewall. Now what id like to know is how cani get the registry to check if that entry exists? if it does do this if not then do that. i know how to check if the subkey "Run" exists but not the entry for "COMODO Internet Security", this is the code i was useing to get if the subkey exists
using (RegistryKey Key = Registry.LocalMachine.OpenSubKey(@"SOFTWARE\Microsoft\Windows\CurrentVersion\Run\"))
if (Key != null)
{
MessageBox.Show("found");
}
else
{
MessageBox.Show("not found");
}