Hello jmtjet and all,
Just to make a note of reminder on the structure of the pulldown list under StartMenu>Run stored in the registry. From it, one can delete individual entry in the list and/or eliminate the whole list appearing at the dropdown.
[1] Take the current user to start with. The list MRUList is stored in the key with entries:
Code:
[HKEY_CURRENT_USER\Software\Microsoft\CurrentVersion\Explorer\RunMRU]
"a"="msconfig\1"
"b"="regedit\1"
...
"n"="some application\1"
MRUList="ab...fdg...n.."
[2] The order in the MRUList follows not the alphabetical order, but the order of the past calls appeared in the dropdown.
[3] If you delete the valuename MRUList, then upon reboot/relogon the list will be emptied all togethered.
[4] If you delete the individual valuename "a", say, then upon reboot/re-logon, that application will disappear and the rest remains.
[5] If the parent and the child have different logon names, then obviously, when the parent logs on, the current user is them not the child's. But you want to delete child's dropdown list. (When think about it, this situation is ridiculous as the child knows already calling msconfig. So the whole family use same defaut logon is more likely the case for jmtjet. But anyway...) In that case, you look into your child's username and do the same as described above.
Code:
[HKEY_USERS\<username>\Software\...etc]
So, this is more-or-less the thing in operation as reflected in the registry.
regards - tsuji