"user4792" wrote:
> I would like to know if anyone knows of some good resources
> (tutorials,
> etc) that would help you in writing your own group policy
> templates i.e.
> ..ADM files. I have come to a point where i can no longer
> really rely on
> logon scripts to make changes to the users' registries and
> would prefer
> if i could just enforce a policy on one machine and let is
> propogate
> automatically.
>
>
> Also, if someone is knowledgable with these templates, can you
> tell me
> what might be wrong with the following ADM file, It doesnt
> bring up any
> errors when "compiling", shows my category but doesnt show
> parts/sub
> categories, it's totally blank and i can see no reason why it
> is the way
> it is.
>
>
>
> CLASS USER
> CATEGORY "Screen Savers"
> POLICY Desktop
> KEYNAME "Control PanelDesktop"
> PART ScreenSaverIsSecure EDITTEXT
> VALUENAME "ScreenSaverIsSecure"
> END PART
> PART ScreenSaveTimeOut EDITTEXT
> VALUENAME "ScreenSaveTimeOut"
> END PART
> PART ScreenSaveActive EDITTEXT
> VALUENAME "ScreenSaveActive"
> END PART
> END POLICY
> END CATEGORY
Hi,
I don’t have any links off hand. Bascially I learned by Reading the
.adm files from Office and other applications located in the
C:\Windows\inf (system.adm is the big one).
I have had difficuties getting custom ADM’s to work under Windows
2000/03 though as Group Policy modifies the "policy" section of the
registry but Custom ADM’s actually hack the registry of the user (like
NT 4 did) which is considered a "no no" by AD.
There are lots of resources on MS website.
You are missing the ValueOn and ValueOff sections to make your ADM
work. You need to put what the registry value is. Eg. Checking it
gives you "what" value. Not Checking it gives you "what" value.
Depends on how you ask the question as to whether it is a 1 or a 0 or
another thing altogether.
CLASS USER
CATEGORY "Screen Savers"
POLICY Desktop
KEYNAME "Control Panel\Desktop"
PART ScreenSaverIsSecure EDITTEXT
VALUENAME "ScreenSaverIsSecure"
VALUEON NUMERIC 1
VALUEOFF NUMERIC 0
END PART
PART ScreenSaveTimeOut EDITTEXT
VALUENAME "ScreenSaveTimeOut"
VALUEON NUMERIC 1
VALUEOFF NUMERIC 0
END PART
PART ScreenSaveActive EDITTEXT
VALUENAME "ScreenSaveActive"
VALUEON NUMERIC 1
VALUEOFF NUMERIC 0
END PART
END POLICY
END CATEGORY
--
Posted using the
http://www.WindowsForumz.com/ interface, at author's request
Articles individually checked for conformance to usenet standards
Topic URL:
http://www.WindowsForumz.com/Group-P...ict250839.html
Visit Topic URL to contact author (reg. req'd). Report abuse:
http://www.WindowsForumz.com/eform.php?p=770215