if system is x64 then
because IE will read the value from Wow64 node
if system is x86 then
where autorun.exe specifies your real application name
and here is the test result on Windows8 x64
Code:
Registry.SetValue(HKEY_LOCAL_MACHINE, "Software\\Wow6432Node\\Microsoft\\Internet Explorer\\Main\\FeatureControl\\FEATURE_BROWSER_EMULATION", "autorun.exe", "9000", REG_DWORD);
if system is x86 then
Code:
Registry.SetValue(HKEY_LOCAL_MACHINE, "Software\\Microsoft\\Internet Explorer\\Main\\FeatureControl\\FEATURE_BROWSER_EMULATION", "autorun.exe", "9000", REG_DWORD);
and here is the test result on Windows8 x64
Comment