A Windows XP help forum. PCbanter

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » PCbanter forum » Microsoft Windows XP » General XP issues or comments
Site Map Home Register Authors List Search Today's Posts Mark Forums Read Web Partners

Extracting some CAB font files



 
 
Thread Tools Display Modes
  #1  
Old December 6th 08, 09:03 PM posted to microsoft.public.windowsxp.general
Ron Hirsch[_2_]
external usenet poster
 
Posts: 24
Default Extracting some CAB font files

In XP Pro SP3, I have a non MS CAB file with 100 font files in it where most
of them show with an abbreviated filename, along with an underscore in the
font filename.

Double clicking on a font brings up a window displaying the font characters,
and showing the proper name of the font, which is what shows in the
Windows\Fonts folder after the font is installed. So obviously the final
name is contained in the CAB font file.

Is there any process in XP where I can extract the fonts from the CAB
folder, and have the abbreviated filename automatically changed to the
proper full filename? Is there a utility around to do this?

Doing this manually is a PITA, and I would like to "automate" the process.

I want to create a backup folder with all these fonts, separated from all
the other fonts in my WindowsFonts folder. So while they do exist with the
proper name. sorting then out from teh 500 fonts in my Windows\Fonts folder
will be a PITA.

Ron Hirsch

Ads
  #2  
Old December 6th 08, 09:28 PM posted to microsoft.public.windowsxp.general
Pegasus \(MVP\)[_2672_]
external usenet poster
 
Posts: 1
Default Extracting some CAB font files


"Ron Hirsch" wrote in message
...
In XP Pro SP3, I have a non MS CAB file with 100 font files in it where
most
of them show with an abbreviated filename, along with an underscore in the
font filename.

Double clicking on a font brings up a window displaying the font
characters,
and showing the proper name of the font, which is what shows in the
Windows\Fonts folder after the font is installed. So obviously the final
name is contained in the CAB font file.

Is there any process in XP where I can extract the fonts from the CAB
folder, and have the abbreviated filename automatically changed to the
proper full filename? Is there a utility around to do this?

Doing this manually is a PITA, and I would like to "automate" the process.

I want to create a backup folder with all these fonts, separated from all
the other fonts in my WindowsFonts folder. So while they do exist with
the
proper name. sorting then out from teh 500 fonts in my Windows\Fonts
folder
will be a PITA.

Ron Hirsch


You could use this command from a Command Prompt:
expand -r F:\i386\*.tt* C:\FontBackup
You must create tha target folder manually.


  #3  
Old December 7th 08, 10:05 AM posted to microsoft.public.windowsxp.general
Ron Hirsch[_2_]
external usenet poster
 
Posts: 24
Default Extracting some CAB font files

Hi Pegasus,

Thanks for your reply.

The instructions you gave of "expand -r F:\i386\*.tt* C:\FontBackup" are
not clear to me.

I understand that the target folder "C:\FontBackup" must be manually created
prior to running the command.

But I do not full understand the "F:\i386\*.tt*". What is the "F:\i386\"
part?

Do I copy the fonts from the CAB file to a folder I create on my F drive (or
anywhere), but what is the "i386" string?

Or do I just put the CAB file in the source folder, on a drive of my choice,
in a folder named i386?

Please clarify.

Ron
++++++++++++++++


"Pegasus (MVP)" wrote in message
...

"Ron Hirsch" wrote in message
...
In XP Pro SP3, I have a non MS CAB file with 100 font files in it where
most
of them show with an abbreviated filename, along with an underscore in the
font filename.

Double clicking on a font brings up a window displaying the font
characters,
and showing the proper name of the font, which is what shows in the
Windows\Fonts folder after the font is installed. So obviously the final
name is contained in the CAB font file.

Is there any process in XP where I can extract the fonts from the CAB
folder, and have the abbreviated filename automatically changed to the
proper full filename? Is there a utility around to do this?

Doing this manually is a PITA, and I would like to "automate" the process.

I want to create a backup folder with all these fonts, separated from all
the other fonts in my WindowsFonts folder. So while they do exist with
the
proper name. sorting then out from teh 500 fonts in my Windows\Fonts
folder
will be a PITA.

Ron Hirsch


You could use this command from a Command Prompt:
expand -r F:\i386\*.tt* C:\FontBackup
You must create tha target folder manually.


  #4  
Old December 7th 08, 12:25 PM posted to microsoft.public.windowsxp.general
Pegasus \(MVP\)[_2673_]
external usenet poster
 
Posts: 1
Default Extracting some CAB font files

On the WinXP CD you have two types of compressed files:
- Those with an extension of .xx_, e.g. most or all font files.
- Those that are included in a .cab file.

The ones included in a .cab file can be extracted with a command
such as
expand f:\i386\driver.cab d:\Fonts -f:*.TT*
F:\i386 is obviously the i386 folder on the WinXP installation CD.

The ones whose extension ends on an underscore can be expanded
with the command I gave you previously.

If you have compressed files shipped in a .cab file then you must
go through a two-step process:
1. Extract them, using the above command.
2. Expand them, using the command I gave you in my first reply.


"Ron Hirsch" wrote in message
...
Hi Pegasus,

Thanks for your reply.

The instructions you gave of "expand -r F:\i386\*.tt* C:\FontBackup"
are
not clear to me.

I understand that the target folder "C:\FontBackup" must be manually
created
prior to running the command.

But I do not full understand the "F:\i386\*.tt*". What is the "F:\i386\"
part?

Do I copy the fonts from the CAB file to a folder I create on my F drive
(or
anywhere), but what is the "i386" string?

Or do I just put the CAB file in the source folder, on a drive of my
choice,
in a folder named i386?

Please clarify.

Ron
++++++++++++++++


"Pegasus (MVP)" wrote in message
...

"Ron Hirsch" wrote in message
...
In XP Pro SP3, I have a non MS CAB file with 100 font files in it where
most
of them show with an abbreviated filename, along with an underscore in
the
font filename.

Double clicking on a font brings up a window displaying the font
characters,
and showing the proper name of the font, which is what shows in the
Windows\Fonts folder after the font is installed. So obviously the final
name is contained in the CAB font file.

Is there any process in XP where I can extract the fonts from the CAB
folder, and have the abbreviated filename automatically changed to the
proper full filename? Is there a utility around to do this?

Doing this manually is a PITA, and I would like to "automate" the
process.

I want to create a backup folder with all these fonts, separated from all
the other fonts in my WindowsFonts folder. So while they do exist with
the
proper name. sorting then out from teh 500 fonts in my Windows\Fonts
folder
will be a PITA.

Ron Hirsch


You could use this command from a Command Prompt:
expand -r F:\i386\*.tt* C:\FontBackup
You must create tha target folder manually.




  #5  
Old December 7th 08, 06:41 PM posted to microsoft.public.windowsxp.general
Ron Hirsch[_2_]
external usenet poster
 
Posts: 24
Default Extracting some CAB font files

Pegasus,

I guess you misunderstood what I'm doing. The CAB files in question are 3rd
party CAB files, not on the XP CD.

But I did locate a path to what I want to do. I use a program called
DirectoryToolkit, and it has a built in capability to handle CAB files.

Ron
+++++++++++++++++++++++++++

"Pegasus (MVP)" wrote in message
...
On the WinXP CD you have two types of compressed files:
- Those with an extension of .xx_, e.g. most or all font files.
- Those that are included in a .cab file.

The ones included in a .cab file can be extracted with a command
such as
expand f:\i386\driver.cab d:\Fonts -f:*.TT*
F:\i386 is obviously the i386 folder on the WinXP installation CD.

The ones whose extension ends on an underscore can be expanded
with the command I gave you previously.

If you have compressed files shipped in a .cab file then you must
go through a two-step process:
1. Extract them, using the above command.
2. Expand them, using the command I gave you in my first reply.


"Ron Hirsch" wrote in message
...
Hi Pegasus,

Thanks for your reply.

The instructions you gave of "expand -r F:\i386\*.tt* C:\FontBackup"
are
not clear to me.

I understand that the target folder "C:\FontBackup" must be manually
created
prior to running the command.

But I do not full understand the "F:\i386\*.tt*". What is the "F:\i386\"
part?

Do I copy the fonts from the CAB file to a folder I create on my F drive
(or
anywhere), but what is the "i386" string?

Or do I just put the CAB file in the source folder, on a drive of my
choice,
in a folder named i386?

Please clarify.

Ron
++++++++++++++++


"Pegasus (MVP)" wrote in message
...

"Ron Hirsch" wrote in message
...
In XP Pro SP3, I have a non MS CAB file with 100 font files in it where
most
of them show with an abbreviated filename, along with an underscore in
the
font filename.

Double clicking on a font brings up a window displaying the font
characters,
and showing the proper name of the font, which is what shows in the
Windows\Fonts folder after the font is installed. So obviously the final
name is contained in the CAB font file.

Is there any process in XP where I can extract the fonts from the CAB
folder, and have the abbreviated filename automatically changed to the
proper full filename? Is there a utility around to do this?

Doing this manually is a PITA, and I would like to "automate" the
process.

I want to create a backup folder with all these fonts, separated from all
the other fonts in my WindowsFonts folder. So while they do exist with
the
proper name. sorting then out from teh 500 fonts in my Windows\Fonts
folder
will be a PITA.

Ron Hirsch


You could use this command from a Command Prompt:
expand -r F:\i386\*.tt* C:\FontBackup
You must create tha target folder manually.




  #6  
Old December 7th 08, 06:56 PM posted to microsoft.public.windowsxp.general
Pegasus \(MVP\)[_2676_]
external usenet poster
 
Posts: 1
Default Extracting some CAB font files


"Ron Hirsch" wrote in message
...
Pegasus,

I guess you misunderstood what I'm doing. The CAB files in question are
3rd
party CAB files, not on the XP CD.

But I did locate a path to what I want to do. I use a program called
DirectoryToolkit, and it has a built in capability to handle CAB files.

Ron
+++++++++++++++++++++++++++


No, I understood you perfectly well. The methods I gave you will work on any
CAB file, not just the ones on the WinXP CD.


  #7  
Old December 7th 08, 07:18 PM posted to microsoft.public.windowsxp.general
Ron Hirsch[_2_]
external usenet poster
 
Posts: 24
Default Extracting some CAB font files

Pegasus,

Thanks for your info. I have filed it away in my XP library of info.

Ron
 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off






All times are GMT +1. The time now is 03:19 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 PCbanter.
The comments are property of their posters.