How to remove unwanted fonts?

Status
Not open for further replies.

yashved

Broken In
I think you can simply delete the additional fonts(i.e. except the standard ones like Arial and Times New Roman) from the Control Panel itself..... :)
 

maverickrohan

SABER RIDER
the only reason anyone removes fonts is to make his sytem slighty faster.....if ur system is so slow that need to come to this level to make it faster..........may the force be with u ;) .........

Anywaz........the above soln is correct.......
 

sakumar79

Technomancer
Its better to backup the fonts before deleting them, then delete the backups about a month later after ensuring there are no problems...

Arun
 

digiFriend

In the zone
go to windows-font folder ,back up the fonts you want to remove,then delete it. if you want to reinstall ,simple paste that font in font folder
 

tuxfan

Technomancer
There was a Word macro that lists all fonts installen in your system. Then you can select which ones you don't want and delete the unwanted ones. That word macro can be really helpful.

Here's the code ;)
Code:
Sub ListFonts()
'
' ListFonts Macro
' Macro created 27/04/2005 by tuxfan
'

Dim f As Variant
    Documents.Add
    
    With ActiveDocument.PageSetup.TextColumns
        .SetCount (2)
        .LineBetween = True
    End With
    
    Selection.Font.Size = 14
    For Each f In FontNames
        Selection.Font.Name = f
        Selection.TypeText (f & vbLf)
    Next
End Sub
 

anandk

Distinguished Member
click here, go to pg 38 to see the list of windows screenfonts required.
DONT delete thes.
*www.totalidea.com/files/pdf/tweakxp4.pdf
 
Status
Not open for further replies.
Top Bottom