Çözüldü Yazı tipleri bozuk görünüyor

Bu konu çözüldü olarak işaretlenmiştir. Çözülmediğini düşünüyorsanız konuyu rapor edebilirsiniz.
Katılım
11 Temmuz 2015
Mesajlar
39
Daha fazla  
Cinsiyet
Erkek
Fotoğraflarda belirttiğim gibi fontun içi boş kutucuklardan ibaret. Şekilli karakterleri zaten hiç göstermiyor. Spotify'dan dinlediğim şarkının adını göremiyorum, Steam'de da anlatamayacağım düzeyde bir karakter kaybı var :D

Yaptığım işlermlerim:
  • ClearType.
  • Yazı fontlarının hepsini silip tekrar yüklemek.
  • Manuel olarak yazı fontu seçmek.
Yardımcı olabilecek birileri var mı?

bozuk font.PNG
steam ss1.PNG
steam ss2.PNG
yazı fontu bozuk.PNG
 
Son düzenleyen: Moderatör:
Çözüm
  1. Not defterini açın ve içerisine aşağıdaki kodları yapıştırın:
    Kod:
    Windows Registry Editor Version 5.00
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Fonts]
    "Segoe UI (TrueType)"="segoeui.ttf"
    "Segoe UI Black (TrueType)"="seguibl.ttf"
    "Segoe UI Black Italic (TrueType)"="seguibli.ttf"
    "Segoe UI Bold (TrueType)"="segoeuib.ttf"
    "Segoe UI Bold Italic (TrueType)"="segoeuiz.ttf"
    "Segoe UI Emoji (TrueType)"="seguiemj.ttf"
    "Segoe UI Historic (TrueType)"="seguihis.ttf"
    "Segoe UI Italic (TrueType)"="segoeuii.ttf"
    "Segoe UI Light (TrueType)"="segoeuil.ttf"
    "Segoe UI Light Italic (TrueType)"="seguili.ttf"
    "Segoe UI Semibold (TrueType)"="seguisb.ttf"
    "Segoe UI Semibold Italic (TrueType)"="seguisbi.ttf"
    "Segoe UI Semilight (TrueType)"="segoeuisl.ttf"
    "Segoe UI Semilight Italic (TrueType)"="seguisli.ttf"
    "Segoe UI Symbol (TrueType)"="seguisym.ttf"
    "Segoe MDL2 Assets (TrueType)"="segmdl2.ttf"
    "Segoe Print (TrueType)"="segoepr.ttf"
    "Segoe Print Bold (TrueType)"="segoeprb.ttf"
    "Segoe Script (TrueType)"="segoesc.ttf"
    "Segoe Script Bold (TrueType)"="segoescb.ttf"
    
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\FontSubstitutes]
    
    "Segoe UI"=-
  2. Üst sekmeden Dosya -> Farklı Kaydet seçeneğine tıklayın.
  3. Çıkan pencereden kayıt türünü "Tüm dosyalar" olarak ayarlayın ve belgenin ismini fontfix.reg yapın.
  4. Kaydettiğiniz belgeye çift tıklayın, çıkan kayıt defteri uyarısına tamam deyin.
  5. İşlem tamamlandıktan sonra sisteminizi yeniden başlatın.
İlk yöntemle çözülmezse, anlattığım şekilde bu sefer fontfix.bat isimli bir dosya oluşturun ve içerisinde şu kodlar yazılı olsun:
Kod:
@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"

Bu .bat dosyasına sağ tıklayıp yönetici olarak çalıştırın ve işlem tamamlandığında sistemi yeniden başlatın.

Ayrıca CMD'yi yönetici olarak çalıştırıp, sfc /scannow ve Dism /Online /Cleanup-Image /CheckHealth kodlarını yazarak onarım gerçekleştirmeyi deneyebilirsiniz.

Kaynak:
  1. Not defterini açın ve içerisine aşağıdaki kodları yapıştırın:
    Kod:
    Windows Registry Editor Version 5.00
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Fonts]
    "Segoe UI (TrueType)"="segoeui.ttf"
    "Segoe UI Black (TrueType)"="seguibl.ttf"
    "Segoe UI Black Italic (TrueType)"="seguibli.ttf"
    "Segoe UI Bold (TrueType)"="segoeuib.ttf"
    "Segoe UI Bold Italic (TrueType)"="segoeuiz.ttf"
    "Segoe UI Emoji (TrueType)"="seguiemj.ttf"
    "Segoe UI Historic (TrueType)"="seguihis.ttf"
    "Segoe UI Italic (TrueType)"="segoeuii.ttf"
    "Segoe UI Light (TrueType)"="segoeuil.ttf"
    "Segoe UI Light Italic (TrueType)"="seguili.ttf"
    "Segoe UI Semibold (TrueType)"="seguisb.ttf"
    "Segoe UI Semibold Italic (TrueType)"="seguisbi.ttf"
    "Segoe UI Semilight (TrueType)"="segoeuisl.ttf"
    "Segoe UI Semilight Italic (TrueType)"="seguisli.ttf"
    "Segoe UI Symbol (TrueType)"="seguisym.ttf"
    "Segoe MDL2 Assets (TrueType)"="segmdl2.ttf"
    "Segoe Print (TrueType)"="segoepr.ttf"
    "Segoe Print Bold (TrueType)"="segoeprb.ttf"
    "Segoe Script (TrueType)"="segoesc.ttf"
    "Segoe Script Bold (TrueType)"="segoescb.ttf"
    
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\FontSubstitutes]
    
    "Segoe UI"=-
  2. Üst sekmeden Dosya -> Farklı Kaydet seçeneğine tıklayın.
  3. Çıkan pencereden kayıt türünü "Tüm dosyalar" olarak ayarlayın ve belgenin ismini fontfix.reg yapın.
  4. Kaydettiğiniz belgeye çift tıklayın, çıkan kayıt defteri uyarısına tamam deyin.
  5. İşlem tamamlandıktan sonra sisteminizi yeniden başlatın.
İlk yöntemle çözülmezse, anlattığım şekilde bu sefer fontfix.bat isimli bir dosya oluşturun ve içerisinde şu kodlar yazılı olsun:
Kod:
@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"

Bu .bat dosyasına sağ tıklayıp yönetici olarak çalıştırın ve işlem tamamlandığında sistemi yeniden başlatın.

Ayrıca CMD'yi yönetici olarak çalıştırıp, sfc /scannow ve Dism /Online /Cleanup-Image /CheckHealth kodlarını yazarak onarım gerçekleştirmeyi deneyebilirsiniz.

Kaynak:
 
Çözüm

Geri
Yukarı