ADM File not working

  • Thread starter Thread starter Delta Group
  • Start date Start date
D

Delta Group

I am trying to put together a group policy and the following adm to
turn off "IsDomainMaster" will not show up once it has been loaded.
Any ideas?

CLASS MACHINE
CATEGORY "Network"
POLICY "Browsing"
KEYNAME "SYSTEM\CurrentControlSet\Services\Browser\Parameters"
VALUENAME "IsDomainMaster"
VALUEON "1" VALUEOFF "0"
END POLICY
END CATEGORY
 
try this:

that reg key to disable browser the value should be FALSE and thus the vice
versa is TRUE....

the reg key is just a string value key (REG_SZ) and not REG_DWORD.

I am not near a pc to test this but this should work.

Hope this helps...
************************************

CLASS MACHINE
CATEGORY "Network"
POLICY "Browsing- Prevent those computers from becoming Browser Servers"
KEYNAME "SYSTEM\CurrentControlSet\Services\Browser\Parameters"
VALUENAME "IsDomainMaster"
VALUEON "FALSE
VALUEOFF "TRUE"
END POLICY
END CATEGORY

******************************
 
Sorry about that but when you add the adm file make sure to right click on
Administrative templates and go to View --> Filthering in the new window
uncheck
"Only show policy.....managed"
then click ok and you should be fine...
 
Back
Top