Desktop Functions: Smart Device Functions:
|
Search Results for "HKEY_LOCAL_MACHINE" in [All]odbc32HKey_Machine\Software\ODBC\ODBC.INI\ODBC Data Sources coredll
HKEY_LOCAL_MACHINE = 0x80000002, 3: 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". advapi32
iResult = ConnectToRemoteReg(@"\\" + computerName, HKEY_LOCAL_MACHINE, ref bOK);
else if (this._registryPath.StartsWith("HKEY_LOCAL_MACHINE")) 7: 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. 8: 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.
'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) 10: 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) 11: RegSetValueEx
uint retVal = RegOpenKeyEx(HKEY_LOCAL_MACHINE, registryPath, 0, WRITE_FLAG_MASK, out hKey); Constants
IntPtr HKEY_LOCAL_MACHINE = new IntPtr(-2147483646);
Dim HKEY_LOCAL_MACHINE As New IntPtr(-2147483646) rapi13: CeRegCreateKeyEx
uint HKEY_LOCAL_MACHINE = 0x80000002;
uint ret = CeRegOpenKeyEx(HKEY_LOCAL_MACHINE,"Software\\TestApp\\Settings",0,0x1,out key); 14: CeRegDeleteKey
uint HKEY_LOCAL_MACHINE = 0x80000002; 15: CeRegDeleteValue uint HKEY_LOCAL_MACHINE = 0x80000002; Const HKEY_LOCAL_MACHINE As Integer = &H80000002 16: CeRegOpenKeyEx
uint HKEY_LOCAL_MACHINE = 0x80000002;
uint HKEY_LOCAL_MACHINE = 0x80000002; 18: CeRegSetValueEx
uint HKEY_LOCAL_MACHINE = 0x80000002; Interfaces19: IAutoComplete2
// it then tries HKEY_LOCAL_MACHINE . For a discussion of the |