home *** CD-ROM | disk | FTP | other *** search
/ The Best of Windows 95.com 1996 September / WIN95_09964.iso / disktool / wdsk32.exe / SETUP.INI < prev    next >
INI File  |  1996-08-27  |  4KB  |  76 lines

  1. ;This setup program is released into the public domain for anyone
  2. ;that wants to use it.  The only stipulation is that you keep this
  3. ;header in your SETUP.INI file.  This Setup has the following features:
  4. ;
  5. ;* Ability to copy files if new files is a newer version (according
  6. ;  to VERSIONINFO or is a newer date
  7. ;* Ability to add icons to a program group
  8. ;* Ability to display a text file at the end of setup
  9. ;* Ability to register OLE components
  10. ;* Ability to automatically decompress files compressed with
  11. ;  Microsoft's COMPRESS.EXE (using the -r flag)
  12. ;* One drawback: Because of a bug in the Windows 95 VerInstallFile
  13. ;  function only 8.3 filenames can be used (this is not the case with
  14. ;  Windows NT 4.0--so if you're sure Setup will only be run on Windows NT,
  15. ;  go ahead and use long filenames).  Note: Long directory names CAN
  16. ;  be used.
  17. ;* The executable MUST be named SETUP.EXE and this file MUST
  18. ;  be named SETUP.INI
  19. ;
  20. ;
  21. ;The format of SETUP.INI (must have that name) is as follows:
  22. ; In the [FileList] section, each entry must be Filex where x is
  23. ; an integer.  x must start with 1 and increment by one for each file
  24. ; (ie, you can't have File1, File2, File4--as soon as a break is
  25. ; found, no more files will be read in.
  26. ; The format of the Filex line is as follows (no extra spaces are
  27. ; allowed):
  28. ;   Filex=src,dest,reg,icon,icontext
  29. ;      src is the source file name (Setup assumes the source files
  30. ;         will be in the same directory as SETUP.EXE)
  31. ;      dest is the destination filename with optional directories
  32. ;         prepended.  You can prepend APP for the application directory,
  33. ;         WIN for the Windows directory, and SYS for the Windows\System
  34. ;         directory.  For example, APP\data\myfiles.dat will copy the
  35. ;         source file into the application's data subdirectory and be
  36. ;         named myfiles.dat
  37. ;      reg should be either REG or NOREG.  For REG, if the file's
  38. ;         extension is .REG, REGEDIT will be run with the .REG file
  39. ;         passed in on the command line.  If the extension is .EXE,
  40. ;         the executable file will be run with -regsvr passed in
  41. ;         on the command line.  For all other file types, it is assumed
  42. ;         the file is some sort of self registering .DLL.  The exported
  43. ;         DllRegisterServer function will be called.
  44. ;      icon should be either ICON or NOICON.  If icon is set to ICON,
  45. ;         the next string (icontext) will be the title of the icon used.
  46. ;
  47. ;The [Settings] section can have 3 different settings:
  48. ; Title=app_title   Set this to the title of your application
  49. ; ReadMe=readme.txt Set this to the file (in the application directory
  50. ;                   that you want displayed with NOTEPAD.EXE when Setup
  51. ;                   is finished running.
  52. ; Group=groupname   Set this to the group that all icons will be added to
  53. ; Run=exename       Set this to an executable program in the application
  54. ;                   directory that will be WinExec'd when Setup is done
  55. ;                   running.
  56. ;
  57. ;That's about all.  If you have comments, I can be reached at:
  58. ; 73211.77@compuserve.com 
  59. ;Good Luck,
  60. ;Doug Nebeker
  61. ;August 22, 1996
  62.  
  63.  
  64. [FileList]
  65. File1=WatchDSK.EXE,APP\WatchDSK.EXE,NOREG,ICON,WatchDISK Disk Space Tracker
  66. File2=WatchDSK.HLP,APP\WatchDSK.HLP,NOREG,ICON,WatchDISK Help
  67. File3=grid32.ocx,SYS\grid32.ocx,REG,NOICON
  68. File4=MFC40.DLL,SYS\MFC40.DLL,REG,NOICON
  69. File5=MSVCRT40.DLL,SYS\MSVCRT40.DLL,REG,NOICON
  70. File6=OLEPRO32.DLL,SYS\OLEPRO32.DLL,REG,NOICON
  71. File7=README.TXT,APP\README.TXT,NOREG,NOICON
  72.  
  73. [Settings]
  74. Title=WatchDISK
  75. Group=WatchDISK
  76.