Desktop Functions: Smart Device Functions:
|
Search Results for "HKEY_LOCAL_MACHINE" in [All]Constants
IntPtr HKEY_LOCAL_MACHINE = new IntPtr(-2147483646);
Dim HKEY_LOCAL_MACHINE As New IntPtr(-2147483646) rapi
uint HKEY_LOCAL_MACHINE = 0x80000002;
uint ret = CeRegOpenKeyEx(HKEY_LOCAL_MACHINE,"Software\\TestApp\\Settings",0,0x1,out key);
uint HKEY_LOCAL_MACHINE = 0x80000002; uint HKEY_LOCAL_MACHINE = 0x80000002; Const HKEY_LOCAL_MACHINE As Integer = &H80000002
uint HKEY_LOCAL_MACHINE = 0x80000002;
uint HKEY_LOCAL_MACHINE = 0x80000002;
uint HKEY_LOCAL_MACHINE = 0x80000002; advapi32
iResult = ConnectToRemoteReg(@"\\" + computerName, HKEY_LOCAL_MACHINE, ref bOK);
else if (this._registryPath.StartsWith("HKEY_LOCAL_MACHINE")) 10: RegOpenKey
public static UIntPtr HKEY_LOCAL_MACHINE = new UIntPtr(0x80000002u);
ReadRegKey(HKEY_LOCAL_MACHINE, @"Software\SomeCompany\OurProduct", "InstalledVersion");
string example = ReadRegKey(HKEY_LOCAL_MACHINE, @"Software\SomeCompany\OurProduct", "InstalledVersion"); In both cases, examples would take you to HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node on 64-bit operating systems due to using RegistryView.Registry32. 11: RegOpenKeyEx
public static UIntPtr HKEY_LOCAL_MACHINE = new UIntPtr(0x80000002u);
ReadRegKey(HKEY_LOCAL_MACHINE, @"Software\SomeCompany\OurProduct", "InstalledVersion");
string example = ReadRegKey(HKEY_LOCAL_MACHINE, @"Software\SomeCompany\OurProduct", "InstalledVersion"); In both cases, examples would take you to HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node on 64-bit operating systems due to using RegistryView.Registry32. 12: RegQueryValue
'RegOpenKeyEx(HKEY_LOCAL_MACHINE, "SYSTEM\CurrentControlSet\Control\Session Manager\Environment", 0, KEY_SET_VALUE Or KEY_ENUMERATE_SUB_KEYS, subKey)
string example = ReadRegKey(HKEY_LOCAL_MACHINE, @"Software\SomeCompany\OurProduct", "InstalledVersion");
public static UIntPtr HKEY_LOCAL_MACHINE = new UIntPtr(0x80000002u);
if (RegOpenKeyEx(HKEY_LOCAL_MACHINE, registryPath, 0, READ_FLAG_MASK, out hKey) == 0) 13: RegQueryValueEx
'RegOpenKeyEx(HKEY_LOCAL_MACHINE, "SYSTEM\CurrentControlSet\Control\Session Manager\Environment", 0, KEY_SET_VALUE Or KEY_ENUMERATE_SUB_KEYS, subKey)
string example = ReadRegKey(HKEY_LOCAL_MACHINE, @"Software\SomeCompany\OurProduct", "InstalledVersion");
public static UIntPtr HKEY_LOCAL_MACHINE = new UIntPtr(0x80000002u);
if (RegOpenKeyEx(HKEY_LOCAL_MACHINE, registryPath, 0, READ_FLAG_MASK, out hKey) == 0) 14: RegSetValueEx
uint retVal = RegOpenKeyEx(HKEY_LOCAL_MACHINE, registryPath, 0, WRITE_FLAG_MASK, out hKey); odbc3215: SQLDataSources HKey_Machine\Software\ODBC\ODBC.INI\ODBC Data Sources Interfaces16: IAutoComplete2
// it then tries HKEY_LOCAL_MACHINE . For a discussion of the coredll17: RegCreateKeyEx
HKEY_LOCAL_MACHINE = 0x80000002, 18: RegFlushKey
Const HKEY_LOCAL_MACHINE = &H80000002
RegFlushKey(HKEY_LOCAL_MACHINE) You can also look at the configured timeouts at the registry key "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Power". |