using Microsoft.Win32; ------........................ RegistryKey rsub = Registry.CurrentUser;//under currrent user rsub.CreateSubKey("abc"); RegistryKey r = Registry.CurrentUser.OpenSubKey("abcd", true); r.SetValue("sdate", DateTime.Now.Date.ToShortDateString()); r.SetValue("version", "00-0000"); -..........................
Hari