Windows 10에서 글꼴 캐시 재구축
글꼴 캐시 는 (Font Cache)아이콘 캐시(Icon Cache) 와 같은 방식으로 작동 하며 Windows 운영 체제는 글꼴이 더 빨리 로드되고 앱, 탐색기(Explorer) 등의 인터페이스에 표시되도록 캐시를 만듭니다. 어떤 이유로 글꼴 캐시가 손상된 경우 글꼴이 손상될 수 있습니다. 제대로 나타나지 않거나 Windows 10 에서 잘못된 글꼴 문자를 표시하기 시작합니다 . 이 문제를 해결하려면 글꼴 캐시를 다시 작성해야 하며 이 게시물에서는 그 방법을 살펴보겠습니다.
글꼴 캐시 파일은 Windows 폴더 에 저장됩니다. C:\Windows\ServiceProfiles\LocalService\AppData\Local\FontCache,Windows 가 이 폴더를 보호 하므로 직접 액세스할 수 없습니다 . 글꼴은 위 폴더의 둘 이상의 파일에 캐시됩니다. 어쨌든(Anyway) 시간을 낭비하지 않고 아래 나열된 자습서의 도움으로 Windows 10 에서 글꼴 캐시(Font Cache) 를 다시 작성하는 방법을 살펴보겠습니다 .
Windows 10에서 글꼴 캐시 재구축
문제가 발생하는 경우에 대비 하여 복원 지점(create a restore point) 을 만드십시오 .
방법 1: Windows 10에서 수동으로 글꼴 캐시 다시 작성(Method 1: Manually Rebuild Font Cache in Windows 10)
1. Windows 키 + R을 누른 다음 services.msc 를 입력하고 Enter 키를 누릅니다.
2. 서비스 창에서 " Windows 글꼴 캐시 서비스(Windows Font Cache service) " 를 찾을 때까지 아래로 스크롤합니다 .
참고: 키보드에서 (Note:) W(Press W) 키를 눌러 Windows 글꼴 캐시(Windows Font Cache) 서비스를 찾습니다.
3. 창 글꼴 캐시 서비스를 마우스 오른쪽 버튼으로 클릭(Right-click on Window Font Cache Service) 한 다음 속성을 선택합니다 .(Properties.)
4. 중지 를 클릭한 다음 (Stop)시작 유형(Startup type) 을 비활성화( Disabled.) 로 설정 했는지 확인하십시오 .
5. 적용을 클릭한 다음 확인을 클릭합니다.(OK.)
6. Windows Presentation Foundation Font Cache 3.0.0.0(Windows Presentation Foundation Font Cache 3.0.0.0.) 에 대해 동일한 작업을 수행합니다(3~5단계 수행) .
7. 이제 한 번에 한 폴더로 이동하여 다음 폴더로 이동합니다.
C:\Windows\ServiceProfiles\LocalService\AppData\Local
참고:(Note:) 특정 디렉토리는 Windows 로 보호되므로 위의 경로를 복사하여 붙여넣지 마십시오 . 위의 폴더 에 액세스하려면 위 의 각 폴더를 수동으로 두 번 클릭하고 계속 을 클릭해야 합니다.(Continue)
8. 이제 Local 폴더 안에 있으면 이름이 FontCache이고 확장자가 .dat인 모든 파일을 삭제합니다.(delete all the files with the name FontCache and .dat as the extension.)
9. 그런 다음 FontCache(FontCache) 폴더 를 두 번 클릭하고 모든 내용을 삭제합니다.( delete all of its content.)
10. 다음 디렉토리에서 FNTCACHE.DAT 파일도 삭제 해야 합니다.( delete the file FNTCACHE.DAT)
C:\Windows\System32\
11. 완료되면 PC를 재부팅하여 변경 사항을 저장합니다.
12. 재부팅 후 다음 서비스를 시작하고 시작 유형을 자동으로 설정해야 합니다.
Windows 글꼴 캐시 서비스 (Windows Font Cache Service)
Windows Presentation Foundation 글꼴 캐시 3.0.0.0(Windows Presentation Foundation Font Cache 3.0.0.0)
13. Windows 10에서 글꼴 캐시를 성공적으로 재구축합니다.(Rebuild Font Cache in Windows 10.)
다시 시작한 후에도 잘못된 문자가 계속 표시되면 DISM 을 사용 하여 Windows 10 을 복구해야 합니다 .
방법 2: BAT 파일을 사용하여 Windows 10에서 글꼴 캐시 다시 작성(Method 2: Rebuild Font Cache in Windows 10 using the BAT file)
1. 메모장(Notepad) 을 열고 다음을 복사하여 붙여넣습니다.
@echo off :: Stop and disable "Windows Font Cache Service" service :FontCache sc stop "FontCache" sc config "FontCache" start=disabled sc query FontCache | findstr /I /C:"STOPPED" if not %errorlevel%==0 (goto FontCache) :: Grant access rights to current user for "%WinDir%\ServiceProfiles\LocalService" folder and contents icacls "%WinDir%\ServiceProfiles\LocalService" /grant "%UserName%":F /C /T /Q :: Delete font cache del /A /F /Q "%WinDir%\ServiceProfiles\LocalService\AppData\Local\FontCache\*FontCache*" del /A /F /Q "%WinDir%\System32\FNTCACHE.DAT" :: Enable and start "Windows Font Cache Service" service sc config "FontCache" start=auto sc start "FontCache"
2. 이제 메모장 메뉴에서 파일( File) 을 클릭한 다음 다른 이름으로 저장을 클릭합니다.(Save as.)
3. 파일(Save) 형식 드롭다운에서 " 모든 파일(All Files) "을 선택한 다음 파일 이름 아래에 Rebuild_FontCache.bat 를 입력합니다 (.bat 확장자는 매우 중요합니다).
4. 바탕 화면으로 이동했는지 확인한 다음 저장을 클릭합니다.( Save.)
5. Rebuild_FontCache.bat(Rebuild_FontCache.bat) 를 두 번 클릭 하여 실행하고 완료되면 PC를 재부팅하여 변경 사항을 저장합니다.
추천:(Recommended:)
- Windows 10에서 Bluetooth가 켜지지 않는 문제 수정(Fix Bluetooth won’t turn ON in Windows 10)
- Windows 10에서 최근 항목 및 자주 사용하는 장소 끄기(Turn Off Recent Items and Frequent Places in Windows 10)
- Windows 10에서 인라인 자동 완성 활성화 또는 비활성화(Enable or Disable Inline AutoComplete in Windows 10)
- Windows 10에서 메모리 관리 오류 수정(Fix Memory Management Error in Windows 10)
그게 다야 Windows 10에서 글꼴 캐시를 다시 작성하는 방법을(How to Rebuild Font Cache in Windows 10) 성공적으로 배웠지 만 이 자습서와 관련하여 여전히 질문이 있는 경우 댓글 섹션에서 자유롭게 질문하십시오.
Related posts
Icon Cache에서 Windows 10 복구하는 방법
Windows 10에서 ARP Cache를 지우는 방법
Flush and Reset Windows 10의 DNS Cache의 방법
빨리 Windows 10 Clear All Cache [궁극적 인 가이드]
어떻게 Windows 10 변화 Default System Font에
Fix Computer Wo Windows 10에서 Sleep Mode로 이동하지 마십시오
Windows 10에서 JAR Files를 실행하는 방법
Windows 10에서 System Image Backup을 만드는 방법
Windows 10에서 User Account Control (UAC)을 비활성화하십시오
Windows 10에서 Volume or Drive Partition를 삭제하는 방법
Windows 10에서 Print Queue을 강력하게 지우십시오
Fix Task Host Window Prevents Shut Down Windows 10
Fix Alt+Tab Windows 10에서 작동하지 않습니다
Windows 10에서 Fn Key Lock을 사용하는 방법
Setup Network Files Windows 10에서 공유하는 방법
Fix Unable Delete Temporary Files Windows 10에서
Fix Function KEYS가 작동하지 않는 Windows 10
Rebuild Corrupt Icon Cache, Clear Thumbnail cache Windows 10
Windows 10에서 활성 Directory을 활성화하는 방법
Fix Calculator Windows 10에서 작동하지 않습니다