2
0
I am developing an appliance for a company. I have to develop a custom "explorer.exe" to be run as the shell. The problem is that the current explorer does some import operations such as processing the "Run" (and RunOnce, which I don't actually need) registry entries at the following location.
HKLM\Software\Microsoft\Windows\CurrentVersion\Run
Is there a separate exe/command in windows to manually run these items that I can invoke from my custom explorer.exe?
Thanks in advance!
2Nope. Just open the key, iterate the sub-keys and run the specified commands. – EBGreen – 2013-05-15T15:31:13.870
@EBGreen I'd say add that as an answer. :) – Ƭᴇcʜιᴇ007 – 2013-05-15T15:38:01.847
I generally only add answers if I have either dealt with the specific issue before or I have spent some effort in testing. I've never had the need to explore the WIN32 API for this specific answer, but I'm 90% sure it is correct. – EBGreen – 2013-05-15T15:57:46.003