home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 8 Other / 08-Other.zip / smldrv21.zip / font.cmd next >
OS/2 REXX Batch file  |  1993-06-03  |  227b  |  8 lines

  1. /* REXX script to reset the default system font*/
  2. call RxFuncAdd 'SysIni', 'RexxUtil', 'SysIni'
  3. AppName = 'PM_SystemFonts'
  4. KeyName = 'DefaultFont'
  5. FontName = ''
  6. call SysIni 'USER', AppName, KeyName, FontName||'0'x
  7. exit
  8.