Create a Group Policy Central Store
一、How to create a Group Policy Central Store
You have downloaded or created your own Group Policy Administrative Templates, and would like them to be stored centrally, opposed to individually on each Domain Controller.
Here’s how to create a Group Policy Central Store:
Solution
- Open Group Policy Management.
- Right-click on the Default Domain Controllers Policy under Group Policy Objects, and view the Settings Tab.
- Notice Policy definitions (ADMX files) retrieved from the local machine is displayed under Administrative Templates:
- Copy the C:\Windows\PolicyDefinitions folder to the C:\Windows\SYSVOL\domain\Policies folder:
- Now if we check the Default Domain Controller Policy Settings Tab, we can see Policy definitions (ADMX files) retrieved from the central store is displayed under Administrative Templates:
All current and future Group Policy Administrative Templates will now be kept in the Central Store.
二、组策略控制面板异常:
1.
- Rename “PolicyDefinitions_NTFRS_48964141” folder on the DC that you created “PolicyDefinitions” folder to “PolicyDefinitionsOLD” (or any name you want except PolicyDefinitions)
- Allow enough time to wait the change replicate to all other DCs.
- Then rename the folder back to “PolicyDefinitions”
- Check whether it works
More information, please refer to the article:
Folder name is changed to "FolderName_NTFRS_<xxxxxxxx>"
http://support.microsoft.com/kb/328492/EN-US
If it is not working, please try step 2.
2.
- Delete “PolicyDefinitions_NTFRS_48964141” folder and wait the change replicate to all other DCs.
- Stop “File Replication Service” on all the DCs
- Logon PDC and do Authoritative FRS restore. Here is steps:
- Click Start, and then click Run.
- In the Open box, type regedit and then press ENTER.
- Locate the following subkey in the registry:
HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\NtFrs\Parameters\Backup/Restore\Process at Startup
- In the right pane, double click BurFlags.
- In the Edit DWORD Value dialog box, type D4 and then click OK.
- Quit Registry Editor, and then switch to the Command box.
- In the Command box, type net start ntfrs.
- Quit the Command box.
- Logon on other DCs and do nonauthoritative restores in turn
- Click Start, and then click Run.
- In the Open box, type regedit and then press ENTER.
- Locate the following subkey in the registry:
HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\NtFrs\Parameters\Backup/Restore\Process at Startup
- In the right pane, double-click "BurFlags". In the "Edit DWORD Value" dialog box, type "D2" (without the quotation marks) and then click "OK".
- Quit Registry Editor.
- Click Start, click Run, type in "net start NTFRS" (without the quotation marks) and press ENTER to start File Replication Service.
More information, please refer to the article:
Using the BurFlags registry key to reinitialize File Replication Service replica sets
参考博文:http://www.virtuallyimpossible.co.uk/how-to-create-a-group-policy-central-store/
Create a Group Policy Central Store的更多相关文章
- Managing Group Policy with PowerShell
Overview In this article, I’ll talk about your options when it comes to managing Group Policy using ...
- Setting IE11 with Group Policy Preferences
一.Setting Home Page with Group Policy Preferences 1.Open the Group Policy Management Console and cre ...
- Three Steps to Migrate Group Policy Between Active Directory Domains or Forests Using PowerShell
Three Steps Ahead Have you ever wished that you had three legs? Imagine how much faster you could ru ...
- DFS security warning and use group policy to set up internet security zones
Opening a file from a DFS domain share shows a security warning while openning from the server share ...
- 10 Common Problems Causing Group Policy To Not Apply
10 Common Problems Causing Group Policy To Not Apply Group Policy is a solid tool and is very stable ...
- How to apply Local Group Policy settings silently using the ImportRegPol.exe and Apply_LGPO_Delta.exe utilities.
参考:http://supportishere.com/how-to-apply-local-group-policy-settings-silently-using-the-importregpol ...
- RDP setting group policy
RDP setting group policy 1.Login to domain controller and go to Group Policy Management tool2.Click ...
- How to Add Trust Sites into IE before IE10 through Group Policy
Due to IE10 published, I'll conclude the methods that how to add trust sites in to IE of the version ...
- [转]Missing MSS Settings in Security Options of Group Policy (GPO)
I'm currently working on a new Windows Server 2012 and Windows 8 project. As part of that project is ...
随机推荐
- SQL 将两个结构相同的表合并到成一个表
select * into 新表名 from (select * from T1 union all select * from T2) 这个语句可以实现将合并的数据追加到一个新表中. 不合并重复数据 ...
- hbase能否代替mysql
代志远早年就职网易研究院从事MapReduce与DFS系统的自主研发,后增加支付宝数据平台负责Hadoop与HBase体系的架构设计与二次研发,支付宝流计算与分布式搜索系统的设计和研发,后成为支付宝海 ...
- [iOS]delegate和protocol
转自:http://haoxiang.org/2011/08/ios-delegate-and-protocol/ 今天上班和同事讨论工程怎么组织的时候涉及到这个话题.iOS开发上对delegate使 ...
- Android4.4的zygote进程(下)
3.2.4启动Android系统服务——startSystemServer() 接下来就是启动Android的重头戏了,此时ZygoteInit的main()函数会调用startSystemServe ...
- oracle 查询前30条数据
select * from (select a.*,rownum as rn from tetm_ad_type a) b where b.rn<30 --表名不能用as 字段取别名,直 ...
- ORACLE中NVL和COALESCE的区别
nvl(COMMISSION_PCT,0)如果第一个参数为null,则返回第二个参数如果第一个参数为非null,则返回第一个参数 COALESCE(EXPR1,EXPR2,EXPR3...EXPRn) ...
- 在linux下编译运行C++程序
头一回...把windows下的程序挪到linux下,代码见这篇随笔 1.编译ZTHREAD,使用./configure失败,直接编译的,方法还是上面提到的那篇随笔 2.编译源码,最开始用的cc,后来 ...
- 2. Retrofit2 -- Basic Authentication on Android
2. Retrofit2 -- Basic Authentication on Android android Retrofit tutorial 整合基本的认证 Retrofit 1.9 Retro ...
- 大数据(7) - zookeeper的安装与使用
简介 ZooKeeper是一个分布式的,开放源码的分布式应用程序协调服务,是Google的Chubby一个开源的实现,是Hadoop和Hbase的重要组件.它是一个为分布式应用提供一致性服务的软件,提 ...
- Django - 安装filebrowser发生Error finding Upload-Folder错误
Error finding Upload-Folder (site.storage.location + site.directory). Maybe it does not exist? 解决: F ...