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.......
__________________
Find out Which is The Best Video Codec?....And how to encode video the right way..!!----->>>>> http://www.thinkdigit.com/forum/showthread.php?t=3908
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