Sometimes you get in Windows some strange error codes without any meaning behind.
Like 0xC0000005 or many other ones.
There is a simple Microsoft command line tool available to reveal the meaning of them. This tool was recently updated to the latest version. You find it here: https://www.microsoft.com/en-us/download/details.aspx?id=100432
Compared to the older version there are know approx. 8000 new return codes from more resources added. So its worth to download the latest version.
When you download it simply execute the executable followed
by the error code: e.g. err 0xC0000005
The error code may be used on more than on place in the OS. So you need to figure out the source (or OS area) where the issue happend.
winerror.h, ntstatus.h and bugcodes.h are handled typically by the OS kernel and relate to core os functions like file access etc.
USAGE: err [opt] {value} [value] [value] ...
where <value> must be of one of the following forms:
1. decorated hex (0x54f)
2. implicit hex (54f)
3. ambiguous (1359)
4. exact string (=ERROR_INTERNAL_ERROR)
5. substring (:INTERNAL_ERROR)
...and <opt> may be one of:
/:xml - causes the output to be in XML-parseable form.
To understand the output, try it. It's pretty obvious.
/:listTables - lists all the tables below in XML format.
Again, the format is pretty straightforward.
/:outputtoCSV - lists all the tables below in CSV format.
/:outputtoJS - lists all the tables below for use in JS.
/:outputtoCPP - lists all the tables below for a C++ header.
/:hresultfromwin32 - prints HRESULT_FROM_WIN32 errors for a C++ header.
All values on the command line will be looked up in our internal
tables and presented to you. If available, informational data
associated with the value(s) will also be shown (see below).
All tables are searched by default, but you can restrict the
output to those tables you deem appropriate by adding
"/<tablename>" to the beginning of the commandline.
Example:
> err /winerror.h /ntstatus.h 0
# winerror.h selected.
# ntstatus.h selected.
# for hex 0x0 / decimal 0 :
STATUS_WAIT_0 ntstatus.h
ERROR_SUCCESS winerror.h
# The operation completed successfully.
NO_ERROR winerror.h
SEC_E_OK winerror.h
S_OK winerror.h
# 5 matches found for "0"
This app has support derived from the following headers and privates:
activprof.h activscp.h adoint.h adserr.h
asferr.h audioclient.h audioenginebaseapo.h bitsmsg.h
bthdef.h bugcodes.h cderr.h cdosyserr.h
cfgmgr32.h cierror.h corerror.h corsym.h
ctffunc.h d3d.h d3d9.h d3d9helper.h
d3dx10.h d3dx10core.h d3dx9.h d3dx9xof.h
daogetrw.h dbdaoerr.h dciddi.h ddeml.h
ddraw.h dhcpssdk.h difxapi.h dinput.h
dinputd.h dlnaerror.h dmerror.h drt.h
dsound.h dxfile.h eaphosterror.h ehstormsg.h
esent.h fherrors.h filterr.h fltdefs.h
hidpi.h iiscnfg.h imapi2error.h imapi2fserror.h
imapierror.h ime.h intshcut.h ipexport.h
iscsierr.h iscsilog.h jscript9diag.h legacyErrorCodes.h
lmerr.h lmerrlog.h lmsvc.h lpmapi.h
lzexpand.h mciavi.h mdmregistration.h mdmsg.h
mediaerr.h mferror.h mmstream.h mobsync.h
mpeg2error.h mprerror.h mq.h mqoai.h
msctf.h msdrmerror.h msime.h msiquery.h
msopc.h mswmdm.h msxml2.h nb30.h
ndattrib.h netcfgx.h netevent.h netmon.h
netsh.h nserror.h ntdddisk.h ntdsapi.h
ntdsbmsg.h ntiologc.h ntstatus.h odbcinst.h
ole.h olectl.h oledberr.h oledlg.h
p2p.h patchapi.h patchwiz.h pbdaerrors.h
pdhmsg.h photoacquire.h portabledevice.h qossp.h
raserror.h rdcentraldb.h reconcil.h routprot.h
rtcerr.h sberrors.h scesvc.h schannel.h
setupapi.h shellapi.h sherrors.h shimgdata.h
shobjidl_core.h slerror.h snmp.h spatialaudioclient.h
spatialaudiometadata.h sperror.h stierr.h synchronizationerrors.h
tapi.h tapi3err.h tcerror.h textserv.h
textstor.h thumbcache.h tpcerror.h txdtc.h
upnp.h upnphost.h urlmon.h usb.h
usp10.h vdserr.h vfw.h vfwmsgs.h
vsserror.h wbemcli.h wcmerrors.h wcntypes.h
wdfstatus.h wdscpmsg.h wdsmcerr.h wdstptmgmtmsg.h
werapi.h wiadef.h winbio_err.h wincrypt.h
windowsplayready.h windowssearcherrors.h winerror.h winfax.h
winhttp.h wininet.h winioctl.h winldap.h
winsnmp.h winsock2.h winspool.h wpc.h
wsbapperror.h wsmerror.h wuerror.h xapo.h
xaudio2.h xmllite.h xpsdigitalsignature.h xpsobjectmodel.h
xpsobjectmodel_1.h
There are currently 25259 return codes registered from 173 sources.
Translate
Monday, January 27, 2020
Friday, January 17, 2020
Powershell - replace files in use
UPDATED - 02/08/2020
If you want to replace a file in use you need to handle a very strange registry key called "PendingFileRenameOperations" with a REG_MULTI_SZ type.
If you handle this manually you will absolutely run in trouble. As this key is rarely empty. So you would have to read, append and write again. The chance that you corrupt this thing is very high.
Better to use the builtin function for this. The API is called: MoveFileEx
More Infos about this API you will find here:https://docs.microsoft.com/en-gb/windows/win32/api/winbase/nf-winbase-movefileexa
The file will be replaced during a reboot. This is especially handy when files are locked during regular OS operation. You can even delete a locked file (check API documentation for this).
As this is an unmanaged code API (The real Win32 world without .Net extensions) you need a little bit more code to make it work like a .Net API class. So pure [.NETAPI CALL]::APINameAndOptions does not work alone!
To get a clue how to use it in PowerShell you find here an example:
# Function definition for the API MoveFileEx in PowerShell
Add-Type -TypeDefinition @'
using System;
using System.Runtime.InteropServices;
[Flags]
public enum MoveFileFlags
{
MOVEFILE_REPLACE_EXISTING = 0x00000001,
MOVEFILE_COPY_ALLOWED = 0x00000002,
MOVEFILE_DELAY_UNTIL_REBOOT = 0x00000004,
MOVEFILE_WRITE_THROUGH = 0x00000008,
MOVEFILE_CREATE_HARDLINK = 0x00000010,
MOVEFILE_FAIL_IF_NOT_TRACKABLE = 0x00000020
}
public static class Kernel32
{
[DllImport("kernel32.dll", SetLastError = true, CharSet = CharSet.Unicode)]
public static extern bool MoveFileEx(string lpExistingFileName, string lpNewFileName,MoveFileFlags dwFlags);
}
'@
# Calling the function in Powershell with an example
# [kernel32]::MoveFileEx(OLDFILE,NEWFILE,"MOVEFILE_DELAY_UNTIL_REBOOT")
# Parameter Options:
# 1. Option 1 is new fullpath filename and should have a temporary name.
# 2. Option 2 is for file in use (when API-NULL is given for option 2 then file from option 1 will be deleted)
# IMPORTANT: Use [NullString]::Value the Powershell version of $Null does not get passed to the API properly!
# 3. Parameter which will tell the replacement (or even delete) of locked file during reboot!
# 4. For proper replacement you need 2 calls. 1st call with API specific NULL value will delete the original file. The 2nd call will rename the new file with temp name to the original file
# 5. To retrieve the API extended error properties in case of a failure the command is extended by $Lasterror with capturing the component model exception
# 1st Call to delete the old original file first!
[kernel32]::MoveFileEx("C:\temp\Test1.txt",[NullString]::Value,"MOVEFILE_DELAY_UNTIL_REBOOT");$LastError = [ComponentModel.Win32Exception][Runtime.InteropServices.Marshal]::GetLastWin32Error()
# 2nd Call to rename the new temporary file with the old originial file name. Which now has new content!
[kernel32]::MoveFileEx("C:\temp\Test2.txt","C:\temp\Test1.txt", "MOVEFILE_DELAY_UNTIL_REBOOT");$LastError = [ComponentModel.Win32Exception][Runtime.InteropServices.Marshal]::GetLastWin32Error()
TROUBLESHOOTING:
1. Use Sysinternals "PendMoves.exe" to check the status and valid entries of registry key for "PendingFileRenameOperations"
2. Registrykey "PendingFileRenameOperations" can be checked also manually at: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager
a. When the key does not exist - no further rename operations exist
b. When an operation fails during the reboot the key will be deleted also. So nothing is kept!
c. DO NEVER EVER edit this key manually! Its a binary stored Multi_REG_SZ. Whatever you do it will just be worse!
3. For more log information's check also C:\Windows\PFRO.log
0xc0000035 indicates that you missed the delete the original file first!
0xc0000034 indicates that the file is already deleted. So you can ignore it!
If you want to replace a file in use you need to handle a very strange registry key called "PendingFileRenameOperations" with a REG_MULTI_SZ type.
If you handle this manually you will absolutely run in trouble. As this key is rarely empty. So you would have to read, append and write again. The chance that you corrupt this thing is very high.
Better to use the builtin function for this. The API is called: MoveFileEx
More Infos about this API you will find here:https://docs.microsoft.com/en-gb/windows/win32/api/winbase/nf-winbase-movefileexa
The file will be replaced during a reboot. This is especially handy when files are locked during regular OS operation. You can even delete a locked file (check API documentation for this).
As this is an unmanaged code API (The real Win32 world without .Net extensions) you need a little bit more code to make it work like a .Net API class. So pure [.NETAPI CALL]::APINameAndOptions does not work alone!
To get a clue how to use it in PowerShell you find here an example:
# Function definition for the API MoveFileEx in PowerShell
Add-Type -TypeDefinition @'
using System;
using System.Runtime.InteropServices;
[Flags]
public enum MoveFileFlags
{
MOVEFILE_REPLACE_EXISTING = 0x00000001,
MOVEFILE_COPY_ALLOWED = 0x00000002,
MOVEFILE_DELAY_UNTIL_REBOOT = 0x00000004,
MOVEFILE_WRITE_THROUGH = 0x00000008,
MOVEFILE_CREATE_HARDLINK = 0x00000010,
MOVEFILE_FAIL_IF_NOT_TRACKABLE = 0x00000020
}
public static class Kernel32
{
[DllImport("kernel32.dll", SetLastError = true, CharSet = CharSet.Unicode)]
public static extern bool MoveFileEx(string lpExistingFileName, string lpNewFileName,MoveFileFlags dwFlags);
}
'@
# Calling the function in Powershell with an example
# [kernel32]::MoveFileEx(OLDFILE,NEWFILE,"MOVEFILE_DELAY_UNTIL_REBOOT")
# Parameter Options:
# 1. Option 1 is new fullpath filename and should have a temporary name.
# 2. Option 2 is for file in use (when API-NULL is given for option 2 then file from option 1 will be deleted)
# IMPORTANT: Use [NullString]::Value the Powershell version of $Null does not get passed to the API properly!
# 3. Parameter which will tell the replacement (or even delete) of locked file during reboot!
# 4. For proper replacement you need 2 calls. 1st call with API specific NULL value will delete the original file. The 2nd call will rename the new file with temp name to the original file
# 5. To retrieve the API extended error properties in case of a failure the command is extended by $Lasterror with capturing the component model exception
# 1st Call to delete the old original file first!
[kernel32]::MoveFileEx("C:\temp\Test1.txt",[NullString]::Value,"MOVEFILE_DELAY_UNTIL_REBOOT");$LastError = [ComponentModel.Win32Exception][Runtime.InteropServices.Marshal]::GetLastWin32Error()
# 2nd Call to rename the new temporary file with the old originial file name. Which now has new content!
[kernel32]::MoveFileEx("C:\temp\Test2.txt","C:\temp\Test1.txt", "MOVEFILE_DELAY_UNTIL_REBOOT");$LastError = [ComponentModel.Win32Exception][Runtime.InteropServices.Marshal]::GetLastWin32Error()
TROUBLESHOOTING:
1. Use Sysinternals "PendMoves.exe" to check the status and valid entries of registry key for "PendingFileRenameOperations"
2. Registrykey "PendingFileRenameOperations" can be checked also manually at: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager
a. When the key does not exist - no further rename operations exist
b. When an operation fails during the reboot the key will be deleted also. So nothing is kept!
c. DO NEVER EVER edit this key manually! Its a binary stored Multi_REG_SZ. Whatever you do it will just be worse!
3. For more log information's check also C:\Windows\PFRO.log
0xc0000035 indicates that you missed the delete the original file first!
0xc0000034 indicates that the file is already deleted. So you can ignore it!
Wednesday, January 15, 2020
Tune up your old SurfacePro4
I have a Surface Pro4 for a while. And it got every half year its nice fine upgrade.
Since beginning the Surface Pro4 supported 2 external full HD monitors via the dock but then the internal screen was blacking out. Checked the specs and it was as it was by design. The gaphic adapter did not support 3 monitors (while external are full HD 1080 and the internal was in native 2k mode)
In October I realized that after a certain update (could not found which one) the WLAN becomes also very clunky (bad WLAN performance). Sometimes packet loss or ping roundtrip times in the 900ms or more milliseconds. Did here also some research and all hints just improved from time to time so no real solution.
So what is the best advice when in trouble?
Then I thought ok its now worth to reinstall my machine completely fresh from ground. (2. Reinstall option). Due to Onedrive not really a big data loss. Just the hazzle of reinstalling latest version of my software suites.
And it turned out it was a refreshing living cell injection for my PC!
After processing all the updates the machine is supporting things out of the box I had never before automatically.
All over my advice is from time to time it is still worth to take a fresh restart! (Ensuring that all your precious data is stored in OneDrive)
Since beginning the Surface Pro4 supported 2 external full HD monitors via the dock but then the internal screen was blacking out. Checked the specs and it was as it was by design. The gaphic adapter did not support 3 monitors (while external are full HD 1080 and the internal was in native 2k mode)
In October I realized that after a certain update (could not found which one) the WLAN becomes also very clunky (bad WLAN performance). Sometimes packet loss or ping roundtrip times in the 900ms or more milliseconds. Did here also some research and all hints just improved from time to time so no real solution.
So what is the best advice when in trouble?
- Reboot
- Reinstall
- Rebuy newer hardware
Then I thought ok its now worth to reinstall my machine completely fresh from ground. (2. Reinstall option). Due to Onedrive not really a big data loss. Just the hazzle of reinstalling latest version of my software suites.
And it turned out it was a refreshing living cell injection for my PC!
After processing all the updates the machine is supporting things out of the box I had never before automatically.
- It now supports 2 external screens while still having native resolution shown on the internal screen (= 1 screen more!)
- The bad WLAN performance was gone
- It supports now out of the box space reservation for upgrades (fresh installed systems since 1903 (afaik) will create a extra free space reserved for future upgrades. So no showblocker for upgrades anymore with HDDs full of data. This only works with fresh installed machines beginning with 1903. So migrations from 1507 over and over again do not support this)
- My important user profile documents are automatically migrated to Onedrive out of the box! So everything you store them will integrate automatically to Onedrive. Just be aware of your picture archive. It automatically syncs down and blows your HDD. So you should keep it "cloud only" with the Files On Demand feature!!!)
All over my advice is from time to time it is still worth to take a fresh restart! (Ensuring that all your precious data is stored in OneDrive)
Wednesday, January 8, 2020
Windows 10 - Feature On Demand - Fontlist
Recently one of our special users need a specific font for his machine. And now the big question in which of the Feature On Demand cabs is this specific font. A friend of mine made up a list of them and I just want to share them with you.
So see here a list of all of them (Windows 10 Version 1903 -> 264 Fonts) and you may need to scroll (As the formating of the blog layout is not optimal, simply copy the table in your own Excel for reference)
For security reasons I do not provide a dedicated Excel file for it by my own:
So see here a list of all of them (Windows 10 Version 1903 -> 264 Fonts) and you may need to scroll (As the formating of the blog layout is not optimal, simply copy the table in your own Excel for reference)
For security reasons I do not provide a dedicated Excel file for it by my own:
DocTitle | CabFile | Name | FileVersion | Company | Type |
Aharoni Bold | Microsoft-Windows-LanguageFeatures-Fonts-Hebr-Package~31bf3856ad364e35~amd64~~.cab | ahronbd.ttf | 6.01 | TrueType font file | |
Aldhabi | Microsoft-Windows-LanguageFeatures-Fonts-Arab-Package~31bf3856ad364e35~amd64~~.cab | aldhabi.ttf | 6.84 | 䵩捲潳潦琠䍯牰潲慴楯 | TrueType font file |
Andalus | Microsoft-Windows-LanguageFeatures-Fonts-Arab-Package~31bf3856ad364e35~amd64~~.cab | andlso.ttf | 6.84 | TrueType font file | |
Angsana New | Microsoft-Windows-LanguageFeatures-Fonts-Thai-Package~31bf3856ad364e35~amd64~~.cab | angsana.ttc | 5.05 | TrueType collection font file | |
Angsana New Bold | |||||
Angsana New Bold Italic | |||||
Angsana New Italic | |||||
AngsanaUPC | |||||
AngsanaUPC Bold | |||||
AngsanaUPC Bold Italic | |||||
AngsanaUPC Italic | |||||
Aparajita | Microsoft-Windows-LanguageFeatures-Fonts-Deva-Package~31bf3856ad364e35~amd64~~.cab | aparaj.ttf | 6.90 | TrueType font file | |
Aparajita Bold | Microsoft-Windows-LanguageFeatures-Fonts-Deva-Package~31bf3856ad364e35~amd64~~.cab | aparajb.ttf | 6.90 | TrueType font file | |
Aparajita Bold Italic | Microsoft-Windows-LanguageFeatures-Fonts-Deva-Package~31bf3856ad364e35~amd64~~.cab | aparajbi.ttf | 6.90 | TrueType font file | |
Aparajita Italic | Microsoft-Windows-LanguageFeatures-Fonts-Deva-Package~31bf3856ad364e35~amd64~~.cab | aparaji.ttf | 6.90 | TrueType font file | |
Arabic Typesetting | Microsoft-Windows-LanguageFeatures-Fonts-Arab-Package~31bf3856ad364e35~amd64~~.cab | arabtype.ttf | 6.84 | TrueType font file | |
Arial Nova | Microsoft-Windows-LanguageFeatures-Fonts-PanEuropeanSupplementalFonts-Package~31bf3856ad364e35~amd64~~.cab | ArialNova.ttf | 1.05 | Monotype Imaging Inc. | TrueType font file |
Arial Nova Bold | Microsoft-Windows-LanguageFeatures-Fonts-PanEuropeanSupplementalFonts-Package~31bf3856ad364e35~amd64~~.cab | ArialNova-Bold.ttf | 1.05 | Monotype Imaging Inc. | TrueType font file |
Arial Nova Bold Italic | Microsoft-Windows-LanguageFeatures-Fonts-PanEuropeanSupplementalFonts-Package~31bf3856ad364e35~amd64~~.cab | ArialNova-BoldItalic.ttf | 1.05 | Monotype Imaging Inc. | TrueType font file |
Arial Nova Cond | Microsoft-Windows-LanguageFeatures-Fonts-PanEuropeanSupplementalFonts-Package~31bf3856ad364e35~amd64~~.cab | ArialNovaCond.ttf | 1.05 | Monotype Imaging Inc. | TrueType font file |
Arial Nova Cond Bold | Microsoft-Windows-LanguageFeatures-Fonts-PanEuropeanSupplementalFonts-Package~31bf3856ad364e35~amd64~~.cab | ArialNovaCond-Bold.ttf | 1.05 | Monotype Imaging Inc. | TrueType font file |
Arial Nova Cond Bold Italic | Microsoft-Windows-LanguageFeatures-Fonts-PanEuropeanSupplementalFonts-Package~31bf3856ad364e35~amd64~~.cab | ArialNovaCond-BoldItalic.ttf | 1.05 | Monotype Imaging Inc. | TrueType font file |
Arial Nova Cond Italic | Microsoft-Windows-LanguageFeatures-Fonts-PanEuropeanSupplementalFonts-Package~31bf3856ad364e35~amd64~~.cab | ArialNovaCond-Italic.ttf | 1.05 | Monotype Imaging Inc. | TrueType font file |
Arial Nova Cond Light | Microsoft-Windows-LanguageFeatures-Fonts-PanEuropeanSupplementalFonts-Package~31bf3856ad364e35~amd64~~.cab | ArialNovaCond-Light.ttf | 1.05 | Monotype Imaging Inc. | TrueType font file |
Arial Nova Cond Light Italic | Microsoft-Windows-LanguageFeatures-Fonts-PanEuropeanSupplementalFonts-Package~31bf3856ad364e35~amd64~~.cab | ArialNovaCond-LightItalic.ttf | 1.05 | Monotype Imaging Inc. | TrueType font file |
Arial Nova Italic | Microsoft-Windows-LanguageFeatures-Fonts-PanEuropeanSupplementalFonts-Package~31bf3856ad364e35~amd64~~.cab | ArialNova-Italic.ttf | 1.05 | Monotype Imaging Inc. | TrueType font file |
Arial Nova Light | Microsoft-Windows-LanguageFeatures-Fonts-PanEuropeanSupplementalFonts-Package~31bf3856ad364e35~amd64~~.cab | ArialNova-Light.ttf | 1.05 | Monotype Imaging Inc. | TrueType font file |
Arial Nova Light Italic | Microsoft-Windows-LanguageFeatures-Fonts-PanEuropeanSupplementalFonts-Package~31bf3856ad364e35~amd64~~.cab | ArialNova-LightItalic.ttf | 1.05 | Monotype Imaging Inc. | TrueType font file |
Batang | Microsoft-Windows-LanguageFeatures-Fonts-Kore-Package~31bf3856ad364e35~amd64~~.cab | batang.ttc | 5.02 | TrueType collection font file | |
BatangChe | |||||
Gungsuh | |||||
GungsuhChe | |||||
BIZ UDGothic Bold | Microsoft-Windows-LanguageFeatures-Fonts-Jpan-Package~31bf3856ad364e35~amd64~~.cab | BIZ-UDGothicB.ttc | 1.03 | Morisawa Inc. | TrueType collection font file |
BIZ UDPGothic Bold | |||||
BIZ UDGothic | Microsoft-Windows-LanguageFeatures-Fonts-Jpan-Package~31bf3856ad364e35~amd64~~.cab | BIZ-UDGothicR.ttc | 1.03 | Morisawa Inc. | TrueType collection font file |
BIZ UDPGothic | |||||
BIZ UDMincho Medium | Microsoft-Windows-LanguageFeatures-Fonts-Jpan-Package~31bf3856ad364e35~amd64~~.cab | BIZ-UDMinchoM.ttc | 1.03 | Morisawa Inc. | TrueType collection font file |
BIZ UDPMincho Medium | |||||
Browallia New | Microsoft-Windows-LanguageFeatures-Fonts-Thai-Package~31bf3856ad364e35~amd64~~.cab | browalia.ttc | 5.05 | TrueType collection font file | |
Browallia New Bold | |||||
Browallia New Bold Italic | |||||
Browallia New Italic | |||||
BrowalliaUPC | |||||
BrowalliaUPC Bold | |||||
BrowalliaUPC Bold Italic | |||||
BrowalliaUPC Italic | |||||
Cordia New | Microsoft-Windows-LanguageFeatures-Fonts-Thai-Package~31bf3856ad364e35~amd64~~.cab | cordia.ttc | 5.06 | TrueType collection font file | |
Cordia New Bold | |||||
Cordia New Bold Italic | |||||
Cordia New Italic | |||||
CordiaUPC | |||||
CordiaUPC Bold | |||||
CordiaUPC Bold Italic | |||||
CordiaUPC Italic | |||||
DaunPenh | Microsoft-Windows-LanguageFeatures-Fonts-Khmr-Package~31bf3856ad364e35~amd64~~.cab | daunpenh.ttf | 5.05 | OM Mony | TrueType font file |
David | Microsoft-Windows-LanguageFeatures-Fonts-Hebr-Package~31bf3856ad364e35~amd64~~.cab | david.ttf | 6.01 | TrueType font file | |
David Bold | Microsoft-Windows-LanguageFeatures-Fonts-Hebr-Package~31bf3856ad364e35~amd64~~.cab | davidbd.ttf | 6.01 | TrueType font file | |
DengXian Bold | Microsoft-Windows-LanguageFeatures-Fonts-Hans-Package~31bf3856ad364e35~amd64~~.cab | Dengb.ttf | 1.17 | TrueType font file | |
DengXian Light | Microsoft-Windows-LanguageFeatures-Fonts-Hans-Package~31bf3856ad364e35~amd64~~.cab | Dengl.ttf | 1.17 | TrueType font file | |
DengXian Regular | Microsoft-Windows-LanguageFeatures-Fonts-Hans-Package~31bf3856ad364e35~amd64~~.cab | Deng.ttf | 1.17 | TrueType font file | |
DFKai-SB | Microsoft-Windows-LanguageFeatures-Fonts-Hant-Package~31bf3856ad364e35~amd64~~.cab | kaiu.ttf | 5.01 | TrueType font file | |
DilleniaUPC | Microsoft-Windows-LanguageFeatures-Fonts-Thai-Package~31bf3856ad364e35~amd64~~.cab | upcdl.ttf | 5.05 | TrueType font file | |
DilleniaUPC Bold | Microsoft-Windows-LanguageFeatures-Fonts-Thai-Package~31bf3856ad364e35~amd64~~.cab | upcdb.ttf | 5.05 | TrueType font file | |
DilleniaUPC Bold Italic | Microsoft-Windows-LanguageFeatures-Fonts-Thai-Package~31bf3856ad364e35~amd64~~.cab | upcdbi.ttf | 5.05 | TrueType font file | |
DilleniaUPC Italic | Microsoft-Windows-LanguageFeatures-Fonts-Thai-Package~31bf3856ad364e35~amd64~~.cab | upcdi.ttf | 5.05 | TrueType font file | |
DokChampa | Microsoft-Windows-LanguageFeatures-Fonts-Laoo-Package~31bf3856ad364e35~amd64~~.cab | dokchamp.ttf | 5.06 | Microsoft Corporation | TrueType font file |
Estrangelo Edessa | Microsoft-Windows-LanguageFeatures-Fonts-Syrc-Package~31bf3856ad364e35~amd64~~.cab | estre.ttf | 6.84 | TrueType font file | |
EucrosiaUPC | Microsoft-Windows-LanguageFeatures-Fonts-Thai-Package~31bf3856ad364e35~amd64~~.cab | upcel.ttf | 5.05 | TrueType font file | |
EucrosiaUPC Bold | Microsoft-Windows-LanguageFeatures-Fonts-Thai-Package~31bf3856ad364e35~amd64~~.cab | upceb.ttf | 5.05 | TrueType font file | |
EucrosiaUPC Bold Italic | Microsoft-Windows-LanguageFeatures-Fonts-Thai-Package~31bf3856ad364e35~amd64~~.cab | upcebi.ttf | 5.05 | TrueType font file | |
EucrosiaUPC Italic | Microsoft-Windows-LanguageFeatures-Fonts-Thai-Package~31bf3856ad364e35~amd64~~.cab | upcei.ttf | 5.05 | TrueType font file | |
Euphemia | Microsoft-Windows-LanguageFeatures-Fonts-Cans-Package~31bf3856ad364e35~amd64~~.cab | euphemia.ttf | 5.08 | Tiro Typeworks | TrueType font file |
FangSong | Microsoft-Windows-LanguageFeatures-Fonts-Hans-Package~31bf3856ad364e35~amd64~~.cab | simfang.ttf | 5.01 | TrueType font file | |
FrankRuehl | Microsoft-Windows-LanguageFeatures-Fonts-Hebr-Package~31bf3856ad364e35~amd64~~.cab | frank.ttf | 6.01 | TrueType font file | |
FreesiaUPC | Microsoft-Windows-LanguageFeatures-Fonts-Thai-Package~31bf3856ad364e35~amd64~~.cab | upcfl.ttf | 5.05 | TrueType font file | |
FreesiaUPC Bold | Microsoft-Windows-LanguageFeatures-Fonts-Thai-Package~31bf3856ad364e35~amd64~~.cab | upcfb.ttf | 5.05 | TrueType font file | |
FreesiaUPC Bold Italic | Microsoft-Windows-LanguageFeatures-Fonts-Thai-Package~31bf3856ad364e35~amd64~~.cab | upcfbi.ttf | 5.05 | TrueType font file | |
FreesiaUPC Italic | Microsoft-Windows-LanguageFeatures-Fonts-Thai-Package~31bf3856ad364e35~amd64~~.cab | upcfi.ttf | 5.05 | TrueType font file | |
Gautami | Microsoft-Windows-LanguageFeatures-Fonts-Telu-Package~31bf3856ad364e35~amd64~~.cab | gautami.ttf | 6.90 | TrueType font file | |
Gautami Bold | Microsoft-Windows-LanguageFeatures-Fonts-Telu-Package~31bf3856ad364e35~amd64~~.cab | gautamib.ttf | 6.90 | TrueType font file | |
Georgia Pro | Microsoft-Windows-LanguageFeatures-Fonts-PanEuropeanSupplementalFonts-Package~31bf3856ad364e35~amd64~~.cab | GeorgiaPro-Regular.ttf | 6.14 | Monotype Imaging Inc. | TrueType font file |
Georgia Pro Black | Microsoft-Windows-LanguageFeatures-Fonts-PanEuropeanSupplementalFonts-Package~31bf3856ad364e35~amd64~~.cab | GeorgiaPro-Black.ttf | 6.14 | Monotype Imaging Inc. | TrueType font file |
Georgia Pro Black Italic | Microsoft-Windows-LanguageFeatures-Fonts-PanEuropeanSupplementalFonts-Package~31bf3856ad364e35~amd64~~.cab | GeorgiaPro-BlackItalic.ttf | 6.14 | Monotype Imaging Inc. | TrueType font file |
Georgia Pro Bold | Microsoft-Windows-LanguageFeatures-Fonts-PanEuropeanSupplementalFonts-Package~31bf3856ad364e35~amd64~~.cab | GeorgiaPro-Bold.ttf | 6.14 | Monotype Imaging Inc. | TrueType font file |
Georgia Pro Bold Italic | Microsoft-Windows-LanguageFeatures-Fonts-PanEuropeanSupplementalFonts-Package~31bf3856ad364e35~amd64~~.cab | GeorgiaPro-BoldItalic.ttf | 6.14 | Monotype Imaging Inc. | TrueType font file |
Georgia Pro Cond | Microsoft-Windows-LanguageFeatures-Fonts-PanEuropeanSupplementalFonts-Package~31bf3856ad364e35~amd64~~.cab | GeorgiaPro-CondRegular.ttf | 6.14 | Monotype Imaging Inc. | TrueType font file |
Georgia Pro Cond Black | Microsoft-Windows-LanguageFeatures-Fonts-PanEuropeanSupplementalFonts-Package~31bf3856ad364e35~amd64~~.cab | GeorgiaPro-CondBlack.ttf | 6.14 | Monotype Imaging Inc. | TrueType font file |
Georgia Pro Cond Black Italic | Microsoft-Windows-LanguageFeatures-Fonts-PanEuropeanSupplementalFonts-Package~31bf3856ad364e35~amd64~~.cab | GeorgiaPro-CondBlackItalic.ttf | 6.14 | Monotype Imaging Inc. | TrueType font file |
Georgia Pro Cond Bold | Microsoft-Windows-LanguageFeatures-Fonts-PanEuropeanSupplementalFonts-Package~31bf3856ad364e35~amd64~~.cab | GeorgiaPro-CondBold.ttf | 6.14 | Monotype Imaging Inc. | TrueType font file |
Georgia Pro Cond Bold Italic | Microsoft-Windows-LanguageFeatures-Fonts-PanEuropeanSupplementalFonts-Package~31bf3856ad364e35~amd64~~.cab | GeorgiaPro-CondBoldItalic.ttf | 6.14 | Monotype Imaging Inc. | TrueType font file |
Georgia Pro Cond Italic | Microsoft-Windows-LanguageFeatures-Fonts-PanEuropeanSupplementalFonts-Package~31bf3856ad364e35~amd64~~.cab | GeorgiaPro-CondItalic.ttf | 6.14 | Monotype Imaging Inc. | TrueType font file |
Georgia Pro Cond Light | Microsoft-Windows-LanguageFeatures-Fonts-PanEuropeanSupplementalFonts-Package~31bf3856ad364e35~amd64~~.cab | GeorgiaPro-CondLight.ttf | 6.14 | Monotype Imaging Inc. | TrueType font file |
Georgia Pro Cond Light Italic | Microsoft-Windows-LanguageFeatures-Fonts-PanEuropeanSupplementalFonts-Package~31bf3856ad364e35~amd64~~.cab | GeorgiaPro-CondLightItalic.ttf | 6.14 | Monotype Imaging Inc. | TrueType font file |
Georgia Pro Cond Semibold | Microsoft-Windows-LanguageFeatures-Fonts-PanEuropeanSupplementalFonts-Package~31bf3856ad364e35~amd64~~.cab | GeorgiaPro-CondSemiBold.ttf | 6.14 | Monotype Imaging Inc. | TrueType font file |
Georgia Pro Cond Semibold Italic | Microsoft-Windows-LanguageFeatures-Fonts-PanEuropeanSupplementalFonts-Package~31bf3856ad364e35~amd64~~.cab | GeorgiaPro-CondSemiBoldItalic.ttf | 6.14 | Monotype Imaging Inc. | TrueType font file |
Georgia Pro Italic | Microsoft-Windows-LanguageFeatures-Fonts-PanEuropeanSupplementalFonts-Package~31bf3856ad364e35~amd64~~.cab | GeorgiaPro-Italic.ttf | 6.14 | Monotype Imaging Inc. | TrueType font file |
Georgia Pro Light | Microsoft-Windows-LanguageFeatures-Fonts-PanEuropeanSupplementalFonts-Package~31bf3856ad364e35~amd64~~.cab | GeorgiaPro-Light.ttf | 6.14 | Monotype Imaging Inc. | TrueType font file |
Georgia Pro Light Italic | Microsoft-Windows-LanguageFeatures-Fonts-PanEuropeanSupplementalFonts-Package~31bf3856ad364e35~amd64~~.cab | GeorgiaPro-LightItalic.ttf | 6.14 | Monotype Imaging Inc. | TrueType font file |
Georgia Pro Semibold | Microsoft-Windows-LanguageFeatures-Fonts-PanEuropeanSupplementalFonts-Package~31bf3856ad364e35~amd64~~.cab | GeorgiaPro-SemiBold.ttf | 6.14 | Monotype Imaging Inc. | TrueType font file |
Georgia Pro Semibold Italic | Microsoft-Windows-LanguageFeatures-Fonts-PanEuropeanSupplementalFonts-Package~31bf3856ad364e35~amd64~~.cab | GeorgiaPro-SemiBoldItalic.ttf | 6.14 | Monotype Imaging Inc. | TrueType font file |
Gill Sans Nova | Microsoft-Windows-LanguageFeatures-Fonts-PanEuropeanSupplementalFonts-Package~31bf3856ad364e35~amd64~~.cab | GillSansNova.ttf | 1.02 | Monotype Imaging Inc. | TrueType font file |
Gill Sans Nova Bold | Microsoft-Windows-LanguageFeatures-Fonts-PanEuropeanSupplementalFonts-Package~31bf3856ad364e35~amd64~~.cab | GillSansBoNova.ttf | 1.02 | Monotype Imaging Inc. | TrueType font file |
Gill Sans Nova Bold Italic | Microsoft-Windows-LanguageFeatures-Fonts-PanEuropeanSupplementalFonts-Package~31bf3856ad364e35~amd64~~.cab | GillSansBoItNova.ttf | 1.02 | Monotype Imaging Inc. | TrueType font file |
Gill Sans Nova Cond | Microsoft-Windows-LanguageFeatures-Fonts-PanEuropeanSupplementalFonts-Package~31bf3856ad364e35~amd64~~.cab | GillSansCondNova.ttf | 1.02 | Monotype Imaging Inc. | TrueType font file |
Gill Sans Nova Cond Bold | Microsoft-Windows-LanguageFeatures-Fonts-PanEuropeanSupplementalFonts-Package~31bf3856ad364e35~amd64~~.cab | GillSansCondBoNova.ttf | 1.02 | Monotype Imaging Inc. | TrueType font file |
Gill Sans Nova Cond Bold Italic | Microsoft-Windows-LanguageFeatures-Fonts-PanEuropeanSupplementalFonts-Package~31bf3856ad364e35~amd64~~.cab | GillSansCondBoItNova.ttf | 1.02 | Monotype Imaging Inc. | TrueType font file |
Gill Sans Nova Cond Italic | Microsoft-Windows-LanguageFeatures-Fonts-PanEuropeanSupplementalFonts-Package~31bf3856ad364e35~amd64~~.cab | GillSansCondItNova.ttf | 1.02 | Monotype Imaging Inc. | TrueType font file |
Gill Sans Nova Cond Lt | Microsoft-Windows-LanguageFeatures-Fonts-PanEuropeanSupplementalFonts-Package~31bf3856ad364e35~amd64~~.cab | GillSansCondLightNova.ttf | 1.02 | Monotype Imaging Inc. | TrueType font file |
Gill Sans Nova Cond Lt Italic | Microsoft-Windows-LanguageFeatures-Fonts-PanEuropeanSupplementalFonts-Package~31bf3856ad364e35~amd64~~.cab | GillSansCondLightItNova.ttf | 1.02 | Monotype Imaging Inc. | TrueType font file |
Gill Sans Nova Cond Ultra Bold | Microsoft-Windows-LanguageFeatures-Fonts-PanEuropeanSupplementalFonts-Package~31bf3856ad364e35~amd64~~.cab | GillSansCondUltraBoNova.ttf | 1.02 | Monotype Imaging Inc. | TrueType font file |
Gill Sans Nova Cond XBd | Microsoft-Windows-LanguageFeatures-Fonts-PanEuropeanSupplementalFonts-Package~31bf3856ad364e35~amd64~~.cab | GillSansCondExtraNova.ttf | 1.02 | Monotype Imaging Inc. | TrueType font file |
Gill Sans Nova Cond XBd Italic | Microsoft-Windows-LanguageFeatures-Fonts-PanEuropeanSupplementalFonts-Package~31bf3856ad364e35~amd64~~.cab | GillSansCondExtraItNova.ttf | 1.02 | Monotype Imaging Inc. | TrueType font file |
Gill Sans Nova Italic | Microsoft-Windows-LanguageFeatures-Fonts-PanEuropeanSupplementalFonts-Package~31bf3856ad364e35~amd64~~.cab | GillSansItNova.ttf | 1.02 | Monotype Imaging Inc. | TrueType font file |
Gill Sans Nova Light | Microsoft-Windows-LanguageFeatures-Fonts-PanEuropeanSupplementalFonts-Package~31bf3856ad364e35~amd64~~.cab | GillSansLightNova.ttf | 1.02 | Monotype Imaging Inc. | TrueType font file |
Gill Sans Nova Light Italic | Microsoft-Windows-LanguageFeatures-Fonts-PanEuropeanSupplementalFonts-Package~31bf3856ad364e35~amd64~~.cab | GillSansLightItNova.ttf | 1.02 | Monotype Imaging Inc. | TrueType font file |
Gill Sans Nova Ultra Bold | Microsoft-Windows-LanguageFeatures-Fonts-PanEuropeanSupplementalFonts-Package~31bf3856ad364e35~amd64~~.cab | GillSansUltraBoNova.ttf | 1.02 | Monotype Imaging Inc. | TrueType font file |
Gisha | Microsoft-Windows-LanguageFeatures-Fonts-Hebr-Package~31bf3856ad364e35~amd64~~.cab | gisha.ttf | 6.01 | Microsoft Corporation | TrueType font file |
Gisha Bold | Microsoft-Windows-LanguageFeatures-Fonts-Hebr-Package~31bf3856ad364e35~amd64~~.cab | gishabd.ttf | 6.01 | Microsoft Corporation | TrueType font file |
Gulim | Microsoft-Windows-LanguageFeatures-Fonts-Kore-Package~31bf3856ad364e35~amd64~~.cab | gulim.ttc | 5.03 | TrueType collection font file | |
GulimChe | |||||
Dotum | |||||
DotumChe | |||||
IrisUPC | Microsoft-Windows-LanguageFeatures-Fonts-Thai-Package~31bf3856ad364e35~amd64~~.cab | upcil.ttf | 5.05 | TrueType font file | |
IrisUPC Bold | Microsoft-Windows-LanguageFeatures-Fonts-Thai-Package~31bf3856ad364e35~amd64~~.cab | upcib.ttf | 5.05 | TrueType font file | |
IrisUPC Bold Italic | Microsoft-Windows-LanguageFeatures-Fonts-Thai-Package~31bf3856ad364e35~amd64~~.cab | upcibi.ttf | 5.05 | TrueType font file | |
IrisUPC Italic | Microsoft-Windows-LanguageFeatures-Fonts-Thai-Package~31bf3856ad364e35~amd64~~.cab | upcii.ttf | 5.05 | TrueType font file | |
Iskoola Pota | Microsoft-Windows-LanguageFeatures-Fonts-Sinh-Package~31bf3856ad364e35~amd64~~.cab | iskpota.ttf | 6.96 | TrueType font file | |
Iskoola Pota Bold | Microsoft-Windows-LanguageFeatures-Fonts-Sinh-Package~31bf3856ad364e35~amd64~~.cab | iskpotab.ttf | 6.96 | TrueType font file | |
JasmineUPC | Microsoft-Windows-LanguageFeatures-Fonts-Thai-Package~31bf3856ad364e35~amd64~~.cab | upcjl.ttf | 5.05 | TrueType font file | |
JasmineUPC Bold | Microsoft-Windows-LanguageFeatures-Fonts-Thai-Package~31bf3856ad364e35~amd64~~.cab | upcjb.ttf | 5.05 | TrueType font file | |
JasmineUPC Bold Italic | Microsoft-Windows-LanguageFeatures-Fonts-Thai-Package~31bf3856ad364e35~amd64~~.cab | upcjbi.ttf | 5.05 | TrueType font file | |
JasmineUPC Italic | Microsoft-Windows-LanguageFeatures-Fonts-Thai-Package~31bf3856ad364e35~amd64~~.cab | upcji.ttf | 5.05 | TrueType font file | |
KaiTi | Microsoft-Windows-LanguageFeatures-Fonts-Hans-Package~31bf3856ad364e35~amd64~~.cab | simkai.ttf | 5.01 | TrueType font file | |
Kalinga | Microsoft-Windows-LanguageFeatures-Fonts-Orya-Package~31bf3856ad364e35~amd64~~.cab | kalinga.ttf | 6.90 | TrueType font file | |
Kalinga Bold | Microsoft-Windows-LanguageFeatures-Fonts-Orya-Package~31bf3856ad364e35~amd64~~.cab | kalingab.ttf | 6.90 | TrueType font file | |
Kartika | Microsoft-Windows-LanguageFeatures-Fonts-Mlym-Package~31bf3856ad364e35~amd64~~.cab | kartika.ttf | 6.90 | TrueType font file | |
Kartika Bold | Microsoft-Windows-LanguageFeatures-Fonts-Mlym-Package~31bf3856ad364e35~amd64~~.cab | kartikab.ttf | 6.90 | TrueType font file | |
Khmer UI | Microsoft-Windows-LanguageFeatures-Fonts-Khmr-Package~31bf3856ad364e35~amd64~~.cab | KhmerUI.ttf | 5.05 | Microsoft Corporation | TrueType font file |
Khmer UI Bold | Microsoft-Windows-LanguageFeatures-Fonts-Khmr-Package~31bf3856ad364e35~amd64~~.cab | KhmerUIb.ttf | 5.05 | Microsoft Corporation | TrueType font file |
KodchiangUPC | Microsoft-Windows-LanguageFeatures-Fonts-Thai-Package~31bf3856ad364e35~amd64~~.cab | upckl.ttf | 5.05 | TrueType font file | |
KodchiangUPC Bold | Microsoft-Windows-LanguageFeatures-Fonts-Thai-Package~31bf3856ad364e35~amd64~~.cab | upckb.ttf | 5.05 | TrueType font file | |
KodchiangUPC Bold Italic | Microsoft-Windows-LanguageFeatures-Fonts-Thai-Package~31bf3856ad364e35~amd64~~.cab | upckbi.ttf | 5.05 | TrueType font file | |
KodchiangUPC Italic | Microsoft-Windows-LanguageFeatures-Fonts-Thai-Package~31bf3856ad364e35~amd64~~.cab | upcki.ttf | 5.05 | TrueType font file | |
Kokila | Microsoft-Windows-LanguageFeatures-Fonts-Deva-Package~31bf3856ad364e35~amd64~~.cab | kokila.ttf | 6.90 | TrueType font file | |
Kokila Bold | Microsoft-Windows-LanguageFeatures-Fonts-Deva-Package~31bf3856ad364e35~amd64~~.cab | kokilab.ttf | 6.90 | TrueType font file | |
Kokila Bold Italic | Microsoft-Windows-LanguageFeatures-Fonts-Deva-Package~31bf3856ad364e35~amd64~~.cab | kokilabi.ttf | 6.90 | TrueType font file | |
Kokila Italic | Microsoft-Windows-LanguageFeatures-Fonts-Deva-Package~31bf3856ad364e35~amd64~~.cab | kokilai.ttf | 6.90 | TrueType font file | |
Lao UI | Microsoft-Windows-LanguageFeatures-Fonts-Laoo-Package~31bf3856ad364e35~amd64~~.cab | LaoUI.ttf | 5.06 | Microsoft Corporation | TrueType font file |
Lao UI Bold | Microsoft-Windows-LanguageFeatures-Fonts-Laoo-Package~31bf3856ad364e35~amd64~~.cab | LaoUIb.ttf | 5.06 | Microsoft Corporation | TrueType font file |
Latha | Microsoft-Windows-LanguageFeatures-Fonts-Taml-Package~31bf3856ad364e35~amd64~~.cab | latha.ttf | 6.90 | TrueType font file | |
Latha Bold | Microsoft-Windows-LanguageFeatures-Fonts-Taml-Package~31bf3856ad364e35~amd64~~.cab | lathab.ttf | 6.90 | TrueType font file | |
Leelawadee | Microsoft-Windows-LanguageFeatures-Fonts-Thai-Package~31bf3856ad364e35~amd64~~.cab | leelawad.ttf | 5.06 | Microsoft Corporation | TrueType font file |
Leelawadee Bold | Microsoft-Windows-LanguageFeatures-Fonts-Thai-Package~31bf3856ad364e35~amd64~~.cab | leelawdb.ttf | 5.06 | Microsoft Corporation | TrueType font file |
Levenim MT | Microsoft-Windows-LanguageFeatures-Fonts-Hebr-Package~31bf3856ad364e35~amd64~~.cab | lvnm.ttf | 6.01 | TrueType font file | |
Levenim MT Bold | Microsoft-Windows-LanguageFeatures-Fonts-Hebr-Package~31bf3856ad364e35~amd64~~.cab | lvnmbd.ttf | 6.01 | TrueType font file | |
LilyUPC | Microsoft-Windows-LanguageFeatures-Fonts-Thai-Package~31bf3856ad364e35~amd64~~.cab | upcll.ttf | 5.05 | TrueType font file | |
LilyUPC Bold | Microsoft-Windows-LanguageFeatures-Fonts-Thai-Package~31bf3856ad364e35~amd64~~.cab | upclb.ttf | 5.05 | TrueType font file | |
LilyUPC Bold Italic | Microsoft-Windows-LanguageFeatures-Fonts-Thai-Package~31bf3856ad364e35~amd64~~.cab | upclbi.ttf | 5.05 | TrueType font file | |
LilyUPC Italic | Microsoft-Windows-LanguageFeatures-Fonts-Thai-Package~31bf3856ad364e35~amd64~~.cab | upcli.ttf | 5.05 | TrueType font file | |
Mangal | Microsoft-Windows-LanguageFeatures-Fonts-Deva-Package~31bf3856ad364e35~amd64~~.cab | mangal.ttf | 6.90 | TrueType font file | |
Mangal Bold | Microsoft-Windows-LanguageFeatures-Fonts-Deva-Package~31bf3856ad364e35~amd64~~.cab | mangalb.ttf | 6.90 | TrueType font file | |
Meiryo Bold | Microsoft-Windows-LanguageFeatures-Fonts-Jpan-Package~31bf3856ad364e35~amd64~~.cab | meiryob.ttc | 6.28 | Microsoft Corporation | TrueType collection font file |
Meiryo Bold Italic | |||||
Meiryo UI Bold | |||||
Meiryo UI Bold Italic | |||||
Meiryo | Microsoft-Windows-LanguageFeatures-Fonts-Jpan-Package~31bf3856ad364e35~amd64~~.cab | meiryo.ttc | 6.28 | Microsoft Corporation | TrueType collection font file |
Meiryo Italic | |||||
Meiryo UI | |||||
Meiryo UI Italic | |||||
Microsoft Uighur | Microsoft-Windows-LanguageFeatures-Fonts-Arab-Package~31bf3856ad364e35~amd64~~.cab | msuighur.ttf | 7.00 | TrueType font file | |
Microsoft Uighur Bold | Microsoft-Windows-LanguageFeatures-Fonts-Arab-Package~31bf3856ad364e35~amd64~~.cab | msuighub.ttf | 7.00 | TrueType font file | |
MingLiU | Microsoft-Windows-LanguageFeatures-Fonts-Hant-Package~31bf3856ad364e35~amd64~~.cab | mingliu.ttc | 7.03 | TrueType collection font file | |
PMingLiU | |||||
MingLiU_HKSCS | |||||
Miriam | Microsoft-Windows-LanguageFeatures-Fonts-Hebr-Package~31bf3856ad364e35~amd64~~.cab | mriam.ttf | 6.01 | TrueType font file | |
Miriam Fixed | Microsoft-Windows-LanguageFeatures-Fonts-Hebr-Package~31bf3856ad364e35~amd64~~.cab | mriamc.ttf | 6.01 | TrueType font file | |
MoolBoran | Microsoft-Windows-LanguageFeatures-Fonts-Khmr-Package~31bf3856ad364e35~amd64~~.cab | moolbor.ttf | 5.05 | Microsoft Corporation | TrueType font file |
MS Gothic | Microsoft-Windows-LanguageFeatures-Fonts-Jpan-Package~31bf3856ad364e35~amd64~~.cab | msgothic.ttc | 5.12 | TrueType collection font file | |
MS UI Gothic | |||||
MS PGothic | |||||
MS Mincho | Microsoft-Windows-LanguageFeatures-Fonts-Jpan-Package~31bf3856ad364e35~amd64~~.cab | msmincho.ttc | 5.12 | TrueType collection font file | |
MS PMincho | |||||
Narkisim | Microsoft-Windows-LanguageFeatures-Fonts-Hebr-Package~31bf3856ad364e35~amd64~~.cab | nrkis.ttf | 6.01 | TrueType font file | |
Neue Haas Grotesk Text Pro | Microsoft-Windows-LanguageFeatures-Fonts-PanEuropeanSupplementalFonts-Package~31bf3856ad364e35~amd64~~.cab | NHaasGroteskTXPro-55Rg.ttf | 1.05 | Linotype GmbH | TrueType font file |
Neue Haas Grotesk Text Pro Bold | Microsoft-Windows-LanguageFeatures-Fonts-PanEuropeanSupplementalFonts-Package~31bf3856ad364e35~amd64~~.cab | NHaasGroteskTXPro-75Bd.ttf | 1.05 | Linotype GmbH | TrueType font file |
Neue Haas Grotesk Text Pro Bold Italic | Microsoft-Windows-LanguageFeatures-Fonts-PanEuropeanSupplementalFonts-Package~31bf3856ad364e35~amd64~~.cab | NHaasGroteskTXPro-76BdIt.ttf | 1.05 | Linotype GmbH | TrueType font file |
Neue Haas Grotesk Text Pro Italic | Microsoft-Windows-LanguageFeatures-Fonts-PanEuropeanSupplementalFonts-Package~31bf3856ad364e35~amd64~~.cab | NHaasGroteskTXPro-56It.ttf | 1.05 | Linotype GmbH | TrueType font file |
Neue Haas Grotesk Text Pro Medium | Microsoft-Windows-LanguageFeatures-Fonts-PanEuropeanSupplementalFonts-Package~31bf3856ad364e35~amd64~~.cab | NHaasGroteskTXPro-65Md.ttf | 1.05 | Linotype GmbH | TrueType font file |
Neue Haas Grotesk Text Pro Medium Italic | Microsoft-Windows-LanguageFeatures-Fonts-PanEuropeanSupplementalFonts-Package~31bf3856ad364e35~amd64~~.cab | NHaasGroteskTXPro-66MdIt.ttf | 1.05 | Linotype GmbH | TrueType font file |
Nyala | Microsoft-Windows-LanguageFeatures-Fonts-Ethi-Package~31bf3856ad364e35~amd64~~.cab | nyala.ttf | 5.04 | Tiro Typeworks | TrueType font file |
Plantagenet Cherokee | Microsoft-Windows-LanguageFeatures-Fonts-Cher-Package~31bf3856ad364e35~amd64~~.cab | plantc.ttf | 5.09 | Tiro Typeworks | TrueType font file |
Raavi | Microsoft-Windows-LanguageFeatures-Fonts-Guru-Package~31bf3856ad364e35~amd64~~.cab | raavi.ttf | 6.91 | TrueType font file | |
Raavi Bold | Microsoft-Windows-LanguageFeatures-Fonts-Guru-Package~31bf3856ad364e35~amd64~~.cab | raavib.ttf | 6.91 | TrueType font file | |
Rockwell Nova | Microsoft-Windows-LanguageFeatures-Fonts-PanEuropeanSupplementalFonts-Package~31bf3856ad364e35~amd64~~.cab | RockwellNova.ttf | 1.02 | Monotype Imaging Inc. | TrueType font file |
Rockwell Nova Bold | Microsoft-Windows-LanguageFeatures-Fonts-PanEuropeanSupplementalFonts-Package~31bf3856ad364e35~amd64~~.cab | RockwellNova-Bold.ttf | 1.02 | Monotype Imaging Inc. | TrueType font file |
Rockwell Nova Bold Italic | Microsoft-Windows-LanguageFeatures-Fonts-PanEuropeanSupplementalFonts-Package~31bf3856ad364e35~amd64~~.cab | RockwellNova-BoldItalic.ttf | 1.02 | Monotype Imaging Inc. | TrueType font file |
Rockwell Nova Cond | Microsoft-Windows-LanguageFeatures-Fonts-PanEuropeanSupplementalFonts-Package~31bf3856ad364e35~amd64~~.cab | RockwellNovaCond.ttf | 1.02 | Monotype Imaging Inc. | TrueType font file |
Rockwell Nova Cond Bold | Microsoft-Windows-LanguageFeatures-Fonts-PanEuropeanSupplementalFonts-Package~31bf3856ad364e35~amd64~~.cab | RockwellNovaCond-Bold.ttf | 1.02 | Monotype Imaging Inc. | TrueType font file |
Rockwell Nova Cond Bold Italic | Microsoft-Windows-LanguageFeatures-Fonts-PanEuropeanSupplementalFonts-Package~31bf3856ad364e35~amd64~~.cab | RockwellNovaCond-BoldItalic.ttf | 1.02 | Monotype Imaging Inc. | TrueType font file |
Rockwell Nova Cond Italic | Microsoft-Windows-LanguageFeatures-Fonts-PanEuropeanSupplementalFonts-Package~31bf3856ad364e35~amd64~~.cab | RockwellNovaCond-Italic.ttf | 1.02 | Monotype Imaging Inc. | TrueType font file |
Rockwell Nova Cond Light | Microsoft-Windows-LanguageFeatures-Fonts-PanEuropeanSupplementalFonts-Package~31bf3856ad364e35~amd64~~.cab | RockwellNovaCond-Light.ttf | 1.02 | Monotype Imaging Inc. | TrueType font file |
Rockwell Nova Cond Light Italic | Microsoft-Windows-LanguageFeatures-Fonts-PanEuropeanSupplementalFonts-Package~31bf3856ad364e35~amd64~~.cab | RockwellNovaCond-LightItalic.ttf | 1.02 | Monotype Imaging Inc. | TrueType font file |
Rockwell Nova Extra Bold | Microsoft-Windows-LanguageFeatures-Fonts-PanEuropeanSupplementalFonts-Package~31bf3856ad364e35~amd64~~.cab | RockwellNova-ExtraBold.ttf | 1.02 | Monotype Imaging Inc. | TrueType font file |
Rockwell Nova Extra Bold Italic | Microsoft-Windows-LanguageFeatures-Fonts-PanEuropeanSupplementalFonts-Package~31bf3856ad364e35~amd64~~.cab | RockwellNova-ExtraBoldItalic.ttf | 1.02 | Monotype Imaging Inc. | TrueType font file |
Rockwell Nova Italic | Microsoft-Windows-LanguageFeatures-Fonts-PanEuropeanSupplementalFonts-Package~31bf3856ad364e35~amd64~~.cab | RockwellNova-Italic.ttf | 1.02 | Monotype Imaging Inc. | TrueType font file |
Rockwell Nova Light | Microsoft-Windows-LanguageFeatures-Fonts-PanEuropeanSupplementalFonts-Package~31bf3856ad364e35~amd64~~.cab | RockwellNova-Light.ttf | 1.02 | Monotype Imaging Inc. | TrueType font file |
Rockwell Nova Light Italic | Microsoft-Windows-LanguageFeatures-Fonts-PanEuropeanSupplementalFonts-Package~31bf3856ad364e35~amd64~~.cab | RockwellNova-LightItalic.ttf | 1.02 | Monotype Imaging Inc. | TrueType font file |
Rod | Microsoft-Windows-LanguageFeatures-Fonts-Hebr-Package~31bf3856ad364e35~amd64~~.cab | rod.ttf | 6.01 | TrueType font file | |
Sakkal Majalla | Microsoft-Windows-LanguageFeatures-Fonts-Arab-Package~31bf3856ad364e35~amd64~~.cab | majalla.ttf | 6.86 | Mamoun Sakkal, Sakkal Design | TrueType font file |
Sakkal Majalla Bold | Microsoft-Windows-LanguageFeatures-Fonts-Arab-Package~31bf3856ad364e35~amd64~~.cab | majallab.ttf | 6.86 | Mamoun Sakkal, Sakkal Design | TrueType font file |
Sanskrit Text | Microsoft-Windows-LanguageFeatures-Fonts-Deva-Package~31bf3856ad364e35~amd64~~.cab | Sanskr.ttf | 1.00 | TrueType font file | |
Shonar Bangla | Microsoft-Windows-LanguageFeatures-Fonts-Beng-Package~31bf3856ad364e35~amd64~~.cab | Shonar.ttf | 6.90 | TrueType font file | |
Shonar Bangla Bold | Microsoft-Windows-LanguageFeatures-Fonts-Beng-Package~31bf3856ad364e35~amd64~~.cab | Shonarb.ttf | 6.90 | TrueType font file | |
Shruti | Microsoft-Windows-LanguageFeatures-Fonts-Gujr-Package~31bf3856ad364e35~amd64~~.cab | shruti.ttf | 6.90 | TrueType font file | |
Shruti Bold | Microsoft-Windows-LanguageFeatures-Fonts-Gujr-Package~31bf3856ad364e35~amd64~~.cab | shrutib.ttf | 6.90 | TrueType font file | |
SimHei | Microsoft-Windows-LanguageFeatures-Fonts-Hans-Package~31bf3856ad364e35~amd64~~.cab | simhei.ttf | 5.03 | TrueType font file | |
Simplified Arabic | Microsoft-Windows-LanguageFeatures-Fonts-Arab-Package~31bf3856ad364e35~amd64~~.cab | simpo.ttf | 6.98 | TrueType font file | |
Simplified Arabic Bold | Microsoft-Windows-LanguageFeatures-Fonts-Arab-Package~31bf3856ad364e35~amd64~~.cab | simpbdo.ttf | 6.98 | TrueType font file | |
Simplified Arabic Fixed | Microsoft-Windows-LanguageFeatures-Fonts-Arab-Package~31bf3856ad364e35~amd64~~.cab | simpfxo.ttf | 6.84 | TrueType font file | |
Traditional Arabic | Microsoft-Windows-LanguageFeatures-Fonts-Arab-Package~31bf3856ad364e35~amd64~~.cab | trado.ttf | 6.84 | TrueType font file | |
Traditional Arabic Bold | Microsoft-Windows-LanguageFeatures-Fonts-Arab-Package~31bf3856ad364e35~amd64~~.cab | tradbdo.ttf | 6.84 | TrueType font file | |
Tunga | Microsoft-Windows-LanguageFeatures-Fonts-Knda-Package~31bf3856ad364e35~amd64~~.cab | tunga.ttf | 6.90 | TrueType font file | |
Tunga Bold | Microsoft-Windows-LanguageFeatures-Fonts-Knda-Package~31bf3856ad364e35~amd64~~.cab | tungab.ttf | 6.90 | TrueType font file | |
UD Digi Kyokasho N-B | Microsoft-Windows-LanguageFeatures-Fonts-Jpan-Package~31bf3856ad364e35~amd64~~.cab | UDDigiKyokashoN-B.ttc | 1.00 | TrueType collection font file | |
UD Digi Kyokasho NP-B | |||||
UD Digi Kyokasho NK-B | |||||
UD Digi Kyokasho N-R | Microsoft-Windows-LanguageFeatures-Fonts-Jpan-Package~31bf3856ad364e35~amd64~~.cab | UDDigiKyokashoN-R.ttc | 1.00 | TrueType collection font file | |
UD Digi Kyokasho NP-R | |||||
UD Digi Kyokasho NK-R | |||||
Urdu Typesetting | Microsoft-Windows-LanguageFeatures-Fonts-Arab-Package~31bf3856ad364e35~amd64~~.cab | UrdType.ttf | 6.86 | TrueType font file | |
Urdu Typesetting Bold | Microsoft-Windows-LanguageFeatures-Fonts-Arab-Package~31bf3856ad364e35~amd64~~.cab | UrdTypeb.ttf | 6.86 | TrueType font file | |
Utsaah | Microsoft-Windows-LanguageFeatures-Fonts-Deva-Package~31bf3856ad364e35~amd64~~.cab | utsaah.ttf | 6.90 | TrueType font file | |
Utsaah Bold | Microsoft-Windows-LanguageFeatures-Fonts-Deva-Package~31bf3856ad364e35~amd64~~.cab | utsaahb.ttf | 6.90 | TrueType font file | |
Utsaah Bold Italic | Microsoft-Windows-LanguageFeatures-Fonts-Deva-Package~31bf3856ad364e35~amd64~~.cab | utsaahbi.ttf | 6.90 | TrueType font file | |
Utsaah Italic | Microsoft-Windows-LanguageFeatures-Fonts-Deva-Package~31bf3856ad364e35~amd64~~.cab | utsaahi.ttf | 6.90 | TrueType font file | |
Vani | Microsoft-Windows-LanguageFeatures-Fonts-Telu-Package~31bf3856ad364e35~amd64~~.cab | Vani.ttf | 6.90 | TrueType font file | |
Vani Bold | Microsoft-Windows-LanguageFeatures-Fonts-Telu-Package~31bf3856ad364e35~amd64~~.cab | Vanib.ttf | 6.90 | TrueType font file | |
Verdana Pro | Microsoft-Windows-LanguageFeatures-Fonts-PanEuropeanSupplementalFonts-Package~31bf3856ad364e35~amd64~~.cab | VerdanaPro-Regular.ttf | 6.13 | Monotype Imaging Inc. | TrueType font file |
Verdana Pro Black | Microsoft-Windows-LanguageFeatures-Fonts-PanEuropeanSupplementalFonts-Package~31bf3856ad364e35~amd64~~.cab | VerdanaPro-Black.ttf | 6.13 | Monotype Imaging Inc. | TrueType font file |
Verdana Pro Black Italic | Microsoft-Windows-LanguageFeatures-Fonts-PanEuropeanSupplementalFonts-Package~31bf3856ad364e35~amd64~~.cab | VerdanaPro-BlackItalic.ttf | 6.13 | Monotype Imaging Inc. | TrueType font file |
Verdana Pro Bold | Microsoft-Windows-LanguageFeatures-Fonts-PanEuropeanSupplementalFonts-Package~31bf3856ad364e35~amd64~~.cab | VerdanaPro-Bold.ttf | 6.13 | Monotype Imaging Inc. | TrueType font file |
Verdana Pro Bold Italic | Microsoft-Windows-LanguageFeatures-Fonts-PanEuropeanSupplementalFonts-Package~31bf3856ad364e35~amd64~~.cab | VerdanaPro-BoldItalic.ttf | 6.13 | Monotype Imaging Inc. | TrueType font file |
Verdana Pro Cond | Microsoft-Windows-LanguageFeatures-Fonts-PanEuropeanSupplementalFonts-Package~31bf3856ad364e35~amd64~~.cab | VerdanaPro-CondRegular.ttf | 6.13 | Monotype Imaging Inc. | TrueType font file |
Verdana Pro Cond Black | Microsoft-Windows-LanguageFeatures-Fonts-PanEuropeanSupplementalFonts-Package~31bf3856ad364e35~amd64~~.cab | VerdanaPro-CondBlack.ttf | 6.13 | Monotype Imaging Inc. | TrueType font file |
Verdana Pro Cond Black Italic | Microsoft-Windows-LanguageFeatures-Fonts-PanEuropeanSupplementalFonts-Package~31bf3856ad364e35~amd64~~.cab | VerdanaPro-CondBlackItalic.ttf | 6.13 | Monotype Imaging Inc. | TrueType font file |
Verdana Pro Cond Bold | Microsoft-Windows-LanguageFeatures-Fonts-PanEuropeanSupplementalFonts-Package~31bf3856ad364e35~amd64~~.cab | VerdanaPro-CondBold.ttf | 6.13 | Monotype Imaging Inc. | TrueType font file |
Verdana Pro Cond Bold Italic | Microsoft-Windows-LanguageFeatures-Fonts-PanEuropeanSupplementalFonts-Package~31bf3856ad364e35~amd64~~.cab | VerdanaPro-CondBoldItalic.ttf | 6.13 | Monotype Imaging Inc. | TrueType font file |
Verdana Pro Cond Italic | Microsoft-Windows-LanguageFeatures-Fonts-PanEuropeanSupplementalFonts-Package~31bf3856ad364e35~amd64~~.cab | VerdanaPro-CondItalic.ttf | 6.13 | Monotype Imaging Inc. | TrueType font file |
Verdana Pro Cond Light | Microsoft-Windows-LanguageFeatures-Fonts-PanEuropeanSupplementalFonts-Package~31bf3856ad364e35~amd64~~.cab | VerdanaPro-CondLight.ttf | 6.13 | Monotype Imaging Inc. | TrueType font file |
Verdana Pro Cond Light Italic | Microsoft-Windows-LanguageFeatures-Fonts-PanEuropeanSupplementalFonts-Package~31bf3856ad364e35~amd64~~.cab | VerdanaPro-CondLightItalic.ttf | 6.13 | Monotype Imaging Inc. | TrueType font file |
Verdana Pro Cond Semibold | Microsoft-Windows-LanguageFeatures-Fonts-PanEuropeanSupplementalFonts-Package~31bf3856ad364e35~amd64~~.cab | VerdanaPro-CondSemiBold.ttf | 6.13 | Monotype Imaging Inc. | TrueType font file |
Verdana Pro Cond Semibold Italic | Microsoft-Windows-LanguageFeatures-Fonts-PanEuropeanSupplementalFonts-Package~31bf3856ad364e35~amd64~~.cab | VerdanaPro-CondSemiBoldItalic.ttf | 6.13 | Monotype Imaging Inc. | TrueType font file |
Verdana Pro Italic | Microsoft-Windows-LanguageFeatures-Fonts-PanEuropeanSupplementalFonts-Package~31bf3856ad364e35~amd64~~.cab | VerdanaPro-Italic.ttf | 6.13 | Monotype Imaging Inc. | TrueType font file |
Verdana Pro Light | Microsoft-Windows-LanguageFeatures-Fonts-PanEuropeanSupplementalFonts-Package~31bf3856ad364e35~amd64~~.cab | VerdanaPro-Light.ttf | 6.13 | Monotype Imaging Inc. | TrueType font file |
Verdana Pro Light Italic | Microsoft-Windows-LanguageFeatures-Fonts-PanEuropeanSupplementalFonts-Package~31bf3856ad364e35~amd64~~.cab | VerdanaPro-LightItalic.ttf | 6.13 | Monotype Imaging Inc. | TrueType font file |
Verdana Pro Semibold | Microsoft-Windows-LanguageFeatures-Fonts-PanEuropeanSupplementalFonts-Package~31bf3856ad364e35~amd64~~.cab | VerdanaPro-SemiBold.ttf | 6.13 | Monotype Imaging Inc. | TrueType font file |
Verdana Pro Semibold Italic | Microsoft-Windows-LanguageFeatures-Fonts-PanEuropeanSupplementalFonts-Package~31bf3856ad364e35~amd64~~.cab | VerdanaPro-SemiBoldItalic.ttf | 6.13 | Monotype Imaging Inc. | TrueType font file |
Vijaya | Microsoft-Windows-LanguageFeatures-Fonts-Taml-Package~31bf3856ad364e35~amd64~~.cab | vijaya.ttf | 6.90 | TrueType font file | |
Vijaya Bold | Microsoft-Windows-LanguageFeatures-Fonts-Taml-Package~31bf3856ad364e35~amd64~~.cab | vijayab.ttf | 6.90 | TrueType font file | |
Vrinda | Microsoft-Windows-LanguageFeatures-Fonts-Beng-Package~31bf3856ad364e35~amd64~~.cab | vrinda.ttf | 6.90 | TrueType font file | |
Vrinda Bold | Microsoft-Windows-LanguageFeatures-Fonts-Beng-Package~31bf3856ad364e35~amd64~~.cab | vrindab.ttf | 6.90 | TrueType font file | |
Yu Mincho Demibold | Microsoft-Windows-LanguageFeatures-Fonts-Jpan-Package~31bf3856ad364e35~amd64~~.cab | yumindb.ttf | 1.84 | JIYUKOBO Ltd. | TrueType font file |
Yu Mincho Light | Microsoft-Windows-LanguageFeatures-Fonts-Jpan-Package~31bf3856ad364e35~amd64~~.cab | yuminl.ttf | 1.84 | JIYUKOBO Ltd. | TrueType font file |
Yu Mincho Regular | Microsoft-Windows-LanguageFeatures-Fonts-Jpan-Package~31bf3856ad364e35~amd64~~.cab | yumin.ttf | 1.84 | JIYUKOBO Ltd. | TrueType font file |
Subscribe to:
Posts (Atom)