Bug in [Font Cache] in Winapp.ini

[Font Cache]
ID=1040
LangSecRef=3003
LangRef=3152
FileKey1=%WinDir%\System32|FNTCACHE.DAT
FileKey2=%LocalAppData%|GDIPFONTCACHEV1.DAT
FileKey2=%windir%\ServiceProfiles\LocalService\AppData\Local|FontCache*.dat

In the above code of Winapp.ini, there are 2 FileKey2 entries which prevents the second FileKey2 from working. The correction is shown below.

[Font Cache]
ID=1040
LangSecRef=3003
LangRef=3152
FileKey1=%WinDir%\System32|FNTCACHE.DAT
FileKey2=%LocalAppData%|GDIPFONTCACHEV1.DAT
FileKey3=%windir%\ServiceProfiles\LocalService\AppData\Local|FontCache*.dat

Thanks, we'll look into this.