Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to update "SCRNSAVE.EXE" value using my c# sample code..

But its doesnt allowing me to do so..!!

Can any one help me on this, below is the function that i am using to update value.

private void setAsDefaultScreenSaver(string valuePath)

{

   RegistryKey key = Registry.CurrentUser.OpenSubKey("Control Panel\\Desktop");

   if (key == null)
     return;
   else
   {
      key.SetValue("SCRNSAVE.EXE", valuePath); 
      key.SetValue("ScreenSaveActive", "1");
   }

}

share|improve this question

1 Answer

up vote 2 down vote accepted

You are opening the subkey as read-only. You need to pass in true as the second param to write to it.

private void setAsDefaultScreenSaver(string valuePath)
{
       RegistryKey key = Registry.CurrentUser.OpenSubKey("Control Panel\\Desktop",true);

       if (key == null)
         return;
       else
       {
          key.SetValue("SCRNSAVE.EXE", valuePath); 
          key.SetValue("ScreenSaveActive", "1");
       }
       key.Close(); //close the key and flush it to disk


 }
share|improve this answer
Thanks Man, you solved my problem.. Cheers...!!! – Mayur Oct 24 '12 at 8:17
Excellent!!!!!! – awright18 Oct 24 '12 at 8:19

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.