Link to home
Start Free TrialLog in
Avatar of ohmErnie
ohmErnie

asked on

Deploy Custom ADM to add registry entry in 2003 Domain

I need to add a registry entry to my windows 2000 and XP clients.  The entries are below.  What do I need to do to accomplish this:


Creating a Group Policy network start timeout policy
The GpNetworkStartTimeoutPolicyValue policy timeout can be specified in the registry in two locations:" HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\Current Version\Winlogon 
" HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\System 
You can do this by adding a DWORD value of GpNetworkStartTimeoutPolicyValue with a number of seconds between 30 and 600.
 
Windows reads the Winlogon subkey first. Then, Windows reads the Policies subkey. The value in the Policies subkey supersedes any value in the Winlogon subkey. There is no user interface that you can use to set this Group Policy object (GPO). Therefore, you have to deploy a custom ADM file in order to set the GPO.

Open in new window

Avatar of Brian Pierce
Brian Pierce
Flag of United Kingdom of Great Britain and Northern Ireland image

Uuse the deskup policy maker (recently bought out by Microsoft) http://www.desktopstandard.com/downloads.html
ASKER CERTIFIED SOLUTION
Avatar of oBdA
oBdA

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of ohmErnie
ohmErnie

ASKER

I tried to change the keyname to use the other recommended key, but the policy does not show in GPMC.  I see the>

Settings
  Network Policies
      <blank>

Here is my adm template:  See anything wrong?

CLASS MACHINE
 
CATEGORY !!Settings
  CATEGORY "Network Policies"
    POLICY "Network Start Timeout Policy"
      KEYNAME "SOFTWARE\Microsoft\Windows NT\Current Version\Winlogon"
      EXPLAIN !!Value_Explain
      PART "Timeout period: " NUMERIC SPIN 5 REQUIRED
        DEFAULT 30
        MIN 30
        MAX 600
        VALUENAME "GpNetworkStartTimeoutPolicyValue"
      END PART
    END POLICY ; "Network Start Timeout Policy"
  END CATEGORY ; "Network Policies"
END CATEGORY ; !!Settings
 
[strings]
Settings=Settings
Value_Explain=The value specified should be of sufficient duration to make sure that the connection is made. During the timeout period, Windows examines the connection status every two seconds and continues with system startup as soon as the connection is confirmed. Therefore, setting the value larger than the minimum value of 30 is recommended. However, be advised that if the system is legitimately disconnected, Windows will stall for the whole timeout period.
You will see this if you uncheck "Show only policies that can be fully managed" in the View>Filter menu, but I wouldn't recommend using this, since you have a "real" policy available.
Changing a key outside the ...\policies\... will "tattoo" the registry, which can lead to unwanted problems if you want to remove the policy at some point.