Hello, I created a custom screen saver for my company and I need to specify the scrnsave.exe value in the registry in two places. The first can be managed via the default GP template the second is "HKEY_USERS\.Default\Control Panel\Desktop". My ADM will not set the value of that key. Can ADMs only set values in the HKEY_LOCAL_MACHINE and HKEY_CURRENT_USER hives? Thanks for the help!
JP

[code:1]
CLASS USER

CATEGORY !!CN
CATEGORY !!SS

KEYNAME ".Default\Control Panel\Desktop"
POLICY !!SSsetting
EXPLAIN !!Explainsettings
SUPPORTED !!mySupported
PART !!ScreenSaverFilename EDITTEXT
VALUENAME "SCRNSAVE.EXE"
END PART
END POLICY
END CATEGORY
END CATEGORY


[STRINGS]
CN="Custom Settings"
SS1="HKU\.Default\Control Panel\Desktop Setting"
SSsetting="Screen Saver Settings"
ExplainSettings="The Explanation"
mySupported="Windows XP or above"
ScreenSaverFilename="Screen Saver executable name"[/code]