I'm editing the Windows registry through my software, which for example replaces the Shell (Kiosk app).

Now I have just noticed that under Win7 if a hard-reset occurs (reset button, or 4 second power button) all the registry changes are lost.

Under WinXP however it works fine, even after a hard reset the changes I made are still there.

Do I have to do anything special after editing the registry under Win7 or is this even a built-in Win7 security feature maybe ?

To me it looks like that the registry changes aren't finalized and just saved in the memory until a soft-reset occurs, could this be true ? If so, can I force a save somehow ?

link|improve this question

70% accept rate
1  
Are you running 32 bit software on 64 Windows ? Maybe registry virtualisation is involved. Where are those key you set reset ? – ixe013 Feb 16 at 20:45
In addition to @ixe013's question, is your app running under an Administrator account when it makes the registry changes? – Ken White Feb 16 at 20:49
This was infact true, I did try it on a 64bit Win7, although I just tried it on a 32bit machine, the result is the same. Also, yes I am using an Administrator account. – user990767 Feb 16 at 20:54
feedback

1 Answer

up vote 12 down vote accepted

Sounds like you want the RegFlushKey function.

The RegFlushKey function returns only when all the data for the hive that contains the specified key has been written to the registry store on disk.

The RegFlushKey function writes out the data for other keys in the hive that have been modified since the last lazy flush or system start.

link|improve this answer
This looks indeed like what I want. I tried to google for an example on how to use it, but nothing really came up, could you please give me an example on how to use it ? – user990767 Feb 16 at 20:56
@user990767: How are you editing the registry? Are you using WinApi functions (so you have an HKEY) or something built into Delphi? – Ben Voigt Feb 16 at 21:00
8  
Ben: +1. @user, if you're using Delphi's TRegistry, set the TRegistry.LazyWrite to false before writing your key. It does the RegFlushKey for you before closing the key. – Ken White Feb 16 at 21:00
What's to demonstrate, User? When you're finished writing your changes to the registry, you call RegFlushKey. Pass it the same registry key you used for all your other operations. (If you're using TRegistry, then that's the CurrentKey property.) – Rob Kennedy Feb 16 at 21:01
3  
@user990767: Ah, I thought you knew how to call winapi functions because your question had that tag. But now I see someone else added it. Anyway, Ken gave you the Delphi-friendly answer in a comment above. – Ben Voigt Feb 16 at 21:13
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

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