事件查看器错误 GPO

事件查看器错误 GPO

我一直在使用的服务器出现了一些问题,我检查了事件查看器,它充满了下面的错误,我不确定如何修复它,我查看了文件所在的路径,它就在那里

Windows 无法访问 GPO CN={31B2F340-016D-11D2-945F-00C04FB984F9}、CN=Policies、CN=System、DC=ISPHOME、DC=NET 的文件 gpt.ini。该文件必须位于 <\isphome.net\sysvol\ISPHOME.NET\Policies{31B2F340-016D-11D2-945F-00C04FB984F9}\gpt.ini> 位置。(无法访问网络位置。有关网络故障排除的信息,请参阅 Windows 帮助。)。组策略处理已中止。

C:\Documents and Settings\Dimitri>ipconfig /all

Windows IP Configuration

   Host Name . . . . . . . . . . . . : ispserver
   Primary Dns Suffix  . . . . . . . : ISPHOME.NET
   Node Type . . . . . . . . . . . . : Unknown
   IP Routing Enabled. . . . . . . . : No
   WINS Proxy Enabled. . . . . . . . : No
   DNS Suffix Search List. . . . . . : ISPHOME.NET

Ethernet adapter Local Area Connection 3:

   Connection-specific DNS Suffix  . :
   Description . . . . . . . . . . . : Intel(R) PRO/100 VE Network Connection #2

   Physical Address. . . . . . . . . : 00-07-E9-AA-3E-C3
   DHCP Enabled. . . . . . . . . . . : No
   IP Address. . . . . . . . . . . . : 192.168.1.50
   Subnet Mask . . . . . . . . . . . : 255.255.255.0
   Default Gateway . . . . . . . . . : 192.168.1.1
   DNS Servers . . . . . . . . . . . : 127.0.0.1
*dcdiag /c /v is below*

         Summary of test results for DNS servers used by the above domain contro
llers:

            DNS server: 192.168.1.1 (<name unavailable>)
               All tests passed on this DNS server
               This is a valid DNS server

            DNS server: 192.168.1.50 (<name unavailable>)
               All tests passed on this DNS server
               This is a valid DNS server
               Name resolution is funtional. _ldap._tcp SRV record for the fores
t root domain is registered

         Summary of DNS test results:

                                            Auth Basc Forw Del  Dyn  RReg Ext
               ________________________________________________________________
            Domain: ISPHOME.NET
               ispserver                    PASS FAIL PASS PASS PASS PASS n/a

         ......................... ISPHOME.NET failed test DNS

答案1

{31B2F340-016D-11D2-945F-00C04FB984F9}是域控制器上特定 GPO 的 GUID。您需要找到此 GPO 并暂时禁用它。这将帮助您缩小范围,确定您是遇到了该 GPO 的问题还是其他问题。

您可以使用以下 Powershell 命令找出它代表哪个 GPO:

Get-GPO -GUID “{31B2F340-016D-11D2-945F-00C04FB984F9}”

如果没有,您必须手动浏览每项政策并执行以下步骤:

使用“Active Directory 用户和计算机”或“Active Directory 站点和服务”管理工具,单击 Active Directory 中域、站点或组织单位对象的上下文菜单上的“属性”。单击“组策略”选项卡,单击 GPO,然后单击“属性”。唯一名称字段包含所选 GPO 的 GUID。还请注意“域”字段。这是存储 GPI 的位置,即使它可能被其他域使用(链接到)。

来源:http://support.microsoft.com/kb/216359

相关内容