How I can copy registry value?

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • How I can copy registry value?

    How I can copy registry value? I need help..
  • Esfahan
    Forum Member
    • Oct 2007
    • 233

    #2
    You can get a reg value by:
    reg = Registry.GetValue(HKEY_LOCAL_MACHINE, "Software\\Explorer ", "reg", false)

    and set a reg value by:
    Registry.SetValue(HKEY_LOCAL_MACHINE, "Software\\Explorer ", "reg", "your value", 1);

    Comment


    • #3
      thank you veryyyyyyyyyyyyyyyyyyy much

      Comment

      Working...
      X