Thank you v. much
Main Topics
Browse All TopicsI am trying to set a policy which will make all domain users screensaver to a standard.
I have written a custom adm file, which is still a bit dirty but basically works (below).
My problem lies in that a change to the registry entry HKCU\Control Panel\Desktop\ScreenSaveTi
I think that this is the only entry which controls the wait time, and it is the key which changes if you alter the Wait time from the screensaver tab in display properties.
Changing the screensaver path in the registry does work though.
This is just for NT/ 2k users.
Please help....I'm stuck
CLASS USER
CATEGORY !!ScreenSaver
KEYNAME "Control Panel\Desktop"
POLICY !!Screensaver
PART !!ScreenSaveActive CHECKBOX DEFCHECKED
VALUENAME "ScreenSaveActive"
END PART
PART !!ScreenSaverIsSecure CHECKBOX DEFCHECKED
VALUENAME "ScreenSaverIsSecure"
VALUEON 0 VALUEOFF 1
END PART
PART !!ScreenSaveTimeOut EDITTEXT
VALUENAME "ScreenSaveTimeOut"
END PART
PART !!Scrnsave.exe EDITTEXT
VALUENAME "Scrnsave.exe"
DEFAULT "C:\test\logon.scr"
END PART
END POLICY
END CATEGORY ; ScreenSaver
[strings]
ScreenSaver="Screensaver"
Screensaver="Screensaver"
ScreenSaveActive="Screensa
ScreenSaverIsSecure="Passw
ScreenSaveTimeOut="Wait for in seconds "
Scrnsave.exe="Path "
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Here is the contents of the ADM that we use. I believe that I got it from Tim Holman from this site.
CLASS USER
CATEGORY "Custom"
POLICY "Screen Saver"
KEYNAME "Control Panel\Desktop"
PART "scrnsave.scr" EDITTEXT
VALUENAME "SCRNSAVE.EXE"
REQUIRED
END PART
PART "Screensaver timeout (600)" EDITTEXT
VALUENAME "ScreenSaveTimeOut"
REQUIRED
END PART
PART "Password Protected" CHECKBOX
VALUENAME "ScreenSaverIsSecure"
VALUEON 1
VALUEOFF 0
END PART
PART "Screensaver Enabled" CHECKBOX
VALUENAME "ScreenSaveActive"
VALUEON 1
VALUEOFF 0
END PART
END POLICY
END CATEGORY
Business Accounts
Answer for Membership
by: celticsPosted on 2002-04-08 at 04:57:38ID: 6925056
Try this as given from the link : http://www.jsiinc.com/sube /tip2200/r h2296.htm
dm.
T
n Saver Policies" e Screen Saver" er the location of the Screen Saver" OOT%\syste m32\logon. scr" "Screen Saver Activation Timeout"
Windows NT 4.0 allows you to extend system policies by incorporating your own .adm files. Enclosed is an .adm file that will allow the configuration of a screen saver. This policy enables 4 options in the user-based portion of the policy:
1. Choosing a screen saver.
2. Enabling the screen saver.
3. Enabling password protection.
4. Setting the timeout.
To use the policy:
1. copy/paste the text to %SystemRoot%\Inf\Scrsave.a
2. In the System Policy Editor (Poledit.exe), press Options / Policy Template.
3. Add the Scrsave.adm file to the templates.
NOTE: The screen saver options will be labeled Screen Saver Policies, and will be available for any user or group.
The Scrsave.adm file contains:
CLASS USER
CATEGORY !!Screen_Saver_Policy
POLICY !!Screen_Saver
KEYNAME "Control Panel\Desktop"
PART !!Screen_Saver_Location
EDITTEXT
DEFAULT !!DEF_SCREEN_SAVER
VALUENAME SCRNSAVE.EXE
END PART
END POLICY
POLICY !!ENABLE_SCREEN_SAVER
KEYNAME "Control Panel\Desktop"
VALUENAME ScreenSaveActive
VALUEON "1" VALUEOFF "0"
END POLICY
POLICY !!ENABLE_Password
KEYNAME "Control Panel\Desktop"
VALUENAME ScreenSaverIsSecure
VALUEON "1" VALUEOFF "0"
END POLICY
POLICY !!SCREEN_SAVER_IDLE_TIMEOU
KEYNAME "Control Panel\Desktop"
VALUENAME ScreenSaveTimeout
VALUEON "600"
END POLICY
END CATEGORY
[strings]
Screen_Saver_Policy="Scree
Screen_Saver="Screen Saver"
ENABLE_SCREEN_SAVER="Enabl
Screen_Saver_Location="Ent
DEF_Screen_Saver="%SYSTEMR
ENABLE_Password=Enable Password
SCREEN_SAVER_IDLE_TIMEOUT=
Similar to what you did, but some major differences in what has not been removed.