Notice: This website is an unofficial Microsoft Knowledge Base (hereinafter KB) archive and is intended to provide a reliable access to deleted content from Microsoft KB. All KB articles are owned by Microsoft Corporation. Read full disclaimer for more details.

How to refresh the Group Policy Settings on remote computers


View products that this article applies to.

Author:

Nirmal Sharma MVP

↑ Back to the top


COMMUNITY SOLUTIONS CONTENT DISCLAIMER

MICROSOFT CORPORATION AND/OR ITS RESPECTIVE SUPPLIERS MAKE NO REPRESENTATIONS ABOUT THE SUITABILITY, RELIABILITY, OR ACCURACY OF THE INFORMATION AND RELATED GRAPHICS CONTAINED HEREIN. ALL SUCH INFORMATION AND RELATED GRAPHICS ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT AND/OR ITS RESPECTIVE SUPPLIERS HEREBY DISCLAIM ALL WARRANTIES AND CONDITIONS WITH REGARD TO THIS INFORMATION AND RELATED GRAPHICS, INCLUDING ALL IMPLIED WARRANTIES AND CONDITIONS OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, WORKMANLIKE EFFORT, TITLE AND NON-INFRINGEMENT. YOU SPECIFICALLY AGREE THAT IN NO EVENT SHALL MICROSOFT AND/OR ITS SUPPLIERS BE LIABLE FOR ANY DIRECT, INDIRECT, PUNITIVE, INCIDENTAL, SPECIAL, CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF USE, DATA OR PROFITS, ARISING OUT OF OR IN ANY WAY CONNECTED WITH THE USE OF OR INABILITY TO USE THE INFORMATION AND RELATED GRAPHICS CONTAINED HEREIN, WHETHER BASED ON CONTRACT, TORT, NEGLIGENCE, STRICT LIABILITY OR OTHERWISE, EVEN IF MICROSOFT OR ANY OF ITS SUPPLIERS HAS BEEN ADVISED OF THE POSSIBILITY OF DAMAGES.

↑ Back to the top


SUMMARY

The following knowledgebase explains the scenario in which you need to refresh the Group Policy Settings on a remote computer.

↑ Back to the top


MORE INFORMATION

The Group Policy Settings are refreshed as per the interval configured in the Group Policy for client computers, member servers and domain controllers. You can use the following command line tools to refresh the Group Policy Settings on remote computer. You need to log on to the computer manually and then perform the action suggested below:
 
For Windows XP computers:
 
Gpupdate.exe /Target:User /force
Gpupdate.exe /Target:Computer /force
 
For Windows 2000
           
            Secedit.exe /refreshpolicy user_policy
            Secedit.exe /refreshpolicy machine_policy
 
To refresh the policy on remote computer or computers you can use the following script to do so:
 
  1. Create a ComputerList.txt
  2. Put all the remote computers in the Text file.
  3. Use the Psexec.exe tool to execute the command remotely.
 
For Windows XP Computers:
 
Psexec.exe Gpupdate.exe /Target:User /force
Psexec.exe Gpupdate.exe /Target:Computer /force
 
For Windows 2000 Computers:
 
Psexec.exe secedit.exe /refreshpolicy user_policy
Psexec.exe secedit.exe /refreshpolicy machine_policy
 
The above Psexec.exe command will run on all the computers specified in the ComputerList.txt.
 
You can also use the following script to check the version of Operating System and then issue the command:
 
@echo off
 
XPGPORef1=gpupdate.exe /Target:User /force
XPGPORef2=gpupdate.exe /Target:Computer /force
 
Win2kGPORef1=secedit.exe /refreshpolicy user_policy
Win2kGPORef2=secedit.exe /refreshpolicy machine_policy
 
For /f “Tokens=*” %%a in (ComputerList.txt) Do (
 
SET Comp_name=%%a
 
Ver.exe \\%comp_name% > Hostver.txt
 
Find /I “XP” < Hostver.txt > CheckCC.txt
 
IF %errorlevel% == 0 (
 
Psexec.exe \\%comp_name% Gpupdate.exe /Target:User /force
Psexec.exe \\%comp_name% Gpupdate.exe /Target:Computer /force
 
) ELSE (
 
Psexec.exe \\%comp_name% secedit.exe /refreshpolicy user_policy
Psexec.exe \\%comp_name% secedit.exe /refreshpolicy machine_policy
)
 
The above script will check the Operating System version by executing Ver.exe on remote computer and then run the appropriate commands to refresh the Group Policy Objects.
 
           

↑ Back to the top


Keywords: KB556027, kbhowto, kbpubtypecca, kbpubmvp

↑ Back to the top

Article Info
Article ID : 556027
Revision : 6
Created on : 8/20/2020
Published on : 8/20/2020
Exists online : False
Views : 272