Microsoft MVP성태의 닷넷 이야기
오류 유형: 429. 이벤트 로그 - User Policy could not be updated successfully [링크 복사], [링크+제목 복사]
조회: 14096
글쓴 사람
정성태 (techsharer at outlook.com)
홈페이지
첨부 파일
 

이벤트 로그 - User Policy could not be updated successfully

gpupdate /force 명령어 수행 시 다음과 같은 오류가 발생합니다.

C:\WINDOWS\system32>gpupdate /force
Updating policy...

Computer Policy update has completed successfully.
User Policy could not be updated successfully. The following errors were encountered:

The processing of Group Policy failed. Windows could not determine if the user and computer accounts are in the same forest. Ensure the user domain name matches the name of a trusted domain that resides in the same forest as the computer account.

To diagnose the failure, review the event log or run GPRESULT /H GPReport.html from the command line to access information about Group Policy results.

이와 함께 이벤트 로그에 관련 항목이 기록됩니다.

Log Name:      System
Source:        Microsoft-Windows-GroupPolicy
Date:          2017-11-23 오후 12:04:28
Event ID:      1110
Task Category: None
Level:         Error
Keywords:      
User:          TESTAD\TestUser
Computer:      TESTMAIN.TESTAD.com
Description:
The processing of Group Policy failed. Windows could not determine if the user and computer accounts are in the same forest. Ensure the user domain name matches the name of a trusted domain that resides in the same forest as the computer account.
Event Xml:
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
  <System>
    <Provider Name="Microsoft-Windows-GroupPolicy" Guid="{AEA1B4FA-97D1-45F2-A64C-4D69FFFD92C9}" />
    <EventID>1110</EventID>
    <Version>0</Version>
    <Level>2</Level>
    <Task>0</Task>
    <Opcode>1</Opcode>
    <Keywords>0x8000000000000000</Keywords>
    <TimeCreated SystemTime="2017-11-23T03:04:28.048164700Z" />
    <EventRecordID>70550</EventRecordID>
    <Correlation ActivityID="{17E672BE-0F2B-4DFD-99F6-D53F42876BFD}" />
    <Execution ProcessID="1028" ThreadID="1352" />
    <Channel>System</Channel>
    <Computer>TESTMAIN.TESTAD.com</Computer>
    <Security UserID="S-1-5-21-1990051354-560935109-2448667075-1104" />
  </System>
  <EventData>
    <Data Name="SupportInfo1">1</Data>
    <Data Name="SupportInfo2">2639</Data>
    <Data Name="ProcessingMode">0</Data>
    <Data Name="ProcessingTimeInMilliseconds">15</Data>
    <Data Name="ErrorCode">1722</Data>
    <Data Name="ErrorDescription">The RPC server is unavailable. </Data>
  </EventData>
</Event>

gpresult를 실행해,

C:\WINDOWS\system32> GPRESULT /H GPReport.html

생성된 gpreport.html를 보면 다음과 같은 내용이 있습니다.

During last computer policy refresh on 2017-11-23 오후 12:33:32
Error: Computer determined to be not in a site. Error code 0x77F.

During last user policy refresh on 2017-11-23 오후 12:33:32
The processing of Group Policy failed. Windows could not determine if the user and computer accounts are in the same forest. Ensure the user domain name matches the name of a trusted domain that resides in the same forest as the computer account.

딱히 해결 방법을 못 찾다가 결국 다음의 글에 따라,

Event ID 1110 - Group Policy Preprocessing (Active Directory)
; https://docs.microsoft.com/en-us/previous-versions/windows/it-pro/windows-server-2008-R2-and-2008/cc727342(v=ws.10)

Disjoin and join the computer to the domain. Then log on with the same user account that experienced the problem.

해당 컴퓨터를 AD로부터 분리한 후 다시 연결하는 것으로 해결했습니다. (그러고 보면 잘 해결되지 않는 AD 문제는 다시 연결하면 해결되는 경우가 종종 있습니다.)




참고로, 다음과 같이 실행할 때마다 경고가 뜰 수 있습니다.

C:\WINDOWS\system32> gpupdate /force
Updating policy...

Computer Policy update has completed successfully.
User Policy update has completed successfully.

The following warnings were encountered during user policy processing:

The Group Policy Client Side Extension Folder Redirection was unable to apply one or more settings because the changes must be processed before system startup or user logon. The system will wait for Group Policy processing to finish completely before the next startup or logon for this user, and this may result in slow startup and boot performance.

For more detailed information, review the event log or run GPRESULT /H GPReport.html from the command line to access information about Group Policy results.

Certain user policies are enabled that can only run during logon.

OK to log off? (Y/N)

로그오프/온 이후에도 gpupdate /force를 수행하면 다시 동일하게 경고가 뜨며, gpreport.html에도 다음과 같은 정도의 메시지만 들어 있습니다.

Folder Redirection did not complete policy processing because the user needs to log on again for the settings to be applied. Group Policy will attempt to apply the settings at the user's next logon.

Additional information may have been logged. Review the Policy Events tab in the console or the application event log for events between 2017-11-23 오후 1:51:33 and 2017-11-23 오후 1:51:34.

그런데 이 경고는 그냥 무시하면 됩니다.

The Group Policy Client Side Extension Folder Redirection Issue 
; https://social.technet.microsoft.com/Forums/windowsserver/en-US/2ff78117-8d11-42b4-b5cd-07c1e3fab6d2/the-group-policy-client-side-extension-folder-redirection-issue?forum=winserverGP

위의 글에도 나오지만 원래 "Folder Redirection" 설정은 로그온 시에만 동기적으로 적용되는 정책이기 때문에 비동기 식으로 업데이트하는 gpupdate /force로 강제 설정을 하면 경고로 뜨는 것에 불과합니다. 즉, 어쨌든 로그온 시에 적용이 될 것이고 다시 gpupdate /force를 실행하면 그사이 또 바뀐 것에 대해 다음번 로그온 시에 적용하겠다는 경고일 뿐입니다.




[이 글에 대해서 여러분들과 의견을 공유하고 싶습니다. 틀리거나 미흡한 부분 또는 의문 사항이 있으시면 언제든 댓글 남겨주십시오.]







[최초 등록일: ]
[최종 수정일: 7/17/2021]

Creative Commons License
이 저작물은 크리에이티브 커먼즈 코리아 저작자표시-비영리-변경금지 2.0 대한민국 라이센스에 따라 이용하실 수 있습니다.
by SeongTae Jeong, mailto:techsharer at outlook.com

비밀번호

댓글 작성자
 




... 31  32  33  [34]  35  36  37  38  39  40  41  42  43  44  45  ...
NoWriterDateCnt.TitleFile(s)
12771정성태8/11/20217726Windows: 196. "Microsoft Windows Subsystem for Linux Background Host" / "Vmmem"을 종료하는 방법
12770정성태8/11/20218427.NET Framework: 1086. C# - Windows Forms 응용 프로그램의 자식 컨트롤 부하파일 다운로드1
12769정성태8/11/20216413오류 유형: 752. Python - ImportError: No module named pip._internal.cli.main 두 번째 이야기
12768정성태8/10/20217434.NET Framework: 1085. .NET 6에 포함된 신규 BCL API [1]파일 다운로드1
12767정성태8/10/20218491오류 유형: 752. Python - ImportError: No module named pip._internal.cli.main
12766정성태8/9/20217019Java: 32. closing inbound before receiving peer's close_notify
12765정성태8/9/20216335Java: 31. Cannot load JDBC driver class 'org.mysql.jdbc.Driver'
12764정성태8/9/202144798Java: 30. XML document from ServletContext resource [/WEB-INF/applicationContext.xml] is invalid
12763정성태8/9/20217801Java: 29. java.lang.NullPointerException - com.mysql.jdbc.ConnectionImpl.getServerCharset
12762정성태8/8/202111321Java: 28. IntelliJ - Unable to open debugger port 오류
12761정성태8/8/20218554Java: 27. IntelliJ - java: package javax.inject does not exist [2]
12760정성태8/8/20215967개발 환경 구성: 594. 전용 "Command Prompt for ..." 단축 아이콘 만들기
12759정성태8/8/20219087Java: 26. IntelliJ + Spring Framework + 새로운 Controller 추가 [2]파일 다운로드1
12758정성태8/7/20218424오류 유형: 751. Error assembling WAR: webxml attribute is required (or pre-existing WEB-INF/web.xml if executing in update mode)
12757정성태8/7/20219114Java: 25. IntelliJ + Spring Framework 프로젝트 생성
12756정성태8/6/20217930.NET Framework: 1084. C# - .NET Core Web API 단위 테스트 방법 [1]파일 다운로드1
12755정성태8/5/20217060개발 환경 구성: 593. MSTest - 단위 테스트에 static/instance 유형의 private 멤버 접근 방법파일 다운로드1
12754정성태8/5/20217996오류 유형: 750. manage.py - Your project may not work properly until you apply the migrations for app(s): admin, auth, contenttypes, sessions.
12753정성태8/5/20218215오류 유형: 749. PyCharm - Error: Django is not importable in this environment
12752정성태8/4/20216316개발 환경 구성: 592. JetBrains의 IDE(예를 들어, PyCharm)에서 Visual Studio 키보드 매핑 적용
12751정성태8/4/20219360개발 환경 구성: 591. Windows 10 WSL2 환경에서 docker-compose 빌드하는 방법
12750정성태8/3/20216176디버깅 기술: 181. windbg - 콜 스택의 "Call Site" 오프셋 값이 가리키는 위치
12749정성태8/2/20215593개발 환경 구성: 590. Visual Studio 2017부터 단위 테스트에 DataRow 특성 지원
12748정성태8/2/20216206개발 환경 구성: 589. Azure Active Directory - tenant의 관리자(admin) 계정 로그인 방법
12747정성태8/1/20216798오류 유형: 748. 오류 기록 - MICROSOFT GRAPH – HOW TO IMPLEMENT IAUTHENTICATIONPROVIDER파일 다운로드1
12746정성태7/31/20218778개발 환경 구성: 588. 네트워크 장비 환경을 시뮬레이션하는 Packet Tracer 프로그램 소개
... 31  32  33  [34]  35  36  37  38  39  40  41  42  43  44  45  ...