home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: WPS_PM / WPS_PM.zip / inf2icon.zip / README.TXT < prev   
Text File  |  1998-11-15  |  1KB  |  28 lines

  1. INF2ICON - Makes WPS icons for INF files
  2.  
  3. INF files are OS/2 online help files.  They are viewed with the
  4. VIEW.EXE utility, which comes with OS/2.
  5.  
  6. INF2ICON is used to make an icon on the desktop for an INF file.
  7. It is a command-line utility.
  8.  
  9. Usage:
  10. INF2ICON inf_file [folder_name]
  11.  
  12. inf_file is the name of the INF file for which you want an icon
  13. folder_name is the a folder on the desktop where you want the ICONS to go
  14.  
  15. If folder_name is not specified, then the default name of "Online Help"
  16. is used.  The folder is always created on the desktop, unless it already
  17. exists somewhere else.
  18.  
  19. INF2ICON scans the INF itself for the descriptive name.  This is the
  20. name that appears in the title bar when you view the help file.  This
  21. same name is used as the name of the icon.  In this manner, you get
  22. description icon titles instead of cryptic ones.
  23.  
  24. To process all the files in a directory, use something like:
  25.  
  26.         C:\OS2\BOOK> for %d in (*.inf) do inf2icon %d OS/2 Warp Online Information
  27.  
  28.