ช่วงปลายเดือนพฤษภาคม 2568 มีการ Update ของระบบ Windows 11 ทำให้บางเครื่องมีปัญหาการแสดงผลของอักษร Angsana New ซึ่งเป็นรูปแบบตัวอักษรที่โปรแกรมพลโชติรุ่น F ใช้
วิธีแก้ไข
คลิ้กเม้าท์ขวาที่ปุ่ม Start ของ Windows (อยู่ล่างสุดมุมซ้ายมือ) เลือก "Windows Terminal (Admin)" หรือ "Command Prompt (Admin)" หรือ "PowerShell (Admin)" ตามที่มีในรายการให้เลือก
หากเลือก PowerShell (Admin)
พิมพ์คำสั่งต่อไปนี้ให้ครบทั้ง 4 คำสั่ง เรียงตามลำดับ (แนะนำ Copy ที่ละคำสั่งแล้วในไปวางที่ Command Line (กดปุ่ม Ctrl กับปุ่ม v พร้อมกัน) แต่ละคำสั่งเมื่อใส่คำสั่งเสร็จแล้งต้องกดปุ่ม Enter
คำสั่งที่ 1
net stop FontCache
คำสั่งที่ 2
Remove-Item -Path "$env:windir\ServiceProfiles\LocalService\AppData\Local\FontCache\*.dat" -Force
คำสั่งที่ 3
Remove-Item -Path "$env:LOCALAPPDATA\FontCache\*.dat" -Force
คำสั่งที่ 4
net start FontCache
จากนั้นให้ Restart เครื่องใหม่
หากเลือก "Windows Terminal (Admin)" หรือ "Command Prompt (Admin)"
พิมพ์คำสั่งต่อไปนี้ให้ครบทั้ง 4 คำสั่ง เรียงตามลำดับ (แนะนำ Copy ที่ละคำสั่งแล้วในไปวางที่ Command Line (กดปุ่ม Ctrl กับปุ่ม v พร้อมกัน) แต่ละคำสั่งเมื่อใส่คำสั่งเสร็จแล้งต้องกดปุ่ม Enter
คำสั่งที่ 1
net stop FontCache
คำสั่งที่ 2
del /Q %windir%\ServiceProfiles\LocalService\AppData\Local\FontCache\*.dat
คำสั่งที่ 3
del /Q %localappdata%\FontCache\*.dat
คำสั่งที่ 4
net start FontCache
จากนั้นให้ Restart เครื่องใหม่