home *** CD-ROM | disk | FTP | other *** search
/ Delphi Developer's Kit 1996 / Delphi Developer's Kit 1996.iso / power / autorun.000 / autorun.git < prev    next >
Encoding:
Text File  |  1995-12-22  |  1.5 KB  |  49 lines

  1. ; //AUTORUN.GIT - data file for AUTORUN.EXE//
  2. ; //Place both files in the CD-ROM root directory with AUTORUN.INF//
  3. ; //Source code(c)1995 by gbamber@mistral.co.uk //
  4. ; //Freely distributable//
  5.  
  6. [DEFAULT]
  7. ; //There are 5 keywords in one section//
  8.  
  9. ; // 1)
  10. ; //prepend the full path, or just the drive before SETUP and APP?//
  11. OnlyPassDrive=no
  12.  
  13.  
  14.  
  15. ; // 2)
  16. ; //If you want, you can put a relative path in these entries//
  17. ; //otherwise the current drive/directory is assumed//
  18. ; // e.g. APP_TO_RUN=\subdir\myapp.exe
  19. ; //Note: BOTH files have to be present on the CD-ROM//
  20. APP_TO_RUN=notepad.exe
  21. APP_SETUP=setup.exe
  22.  
  23.  
  24.  
  25. ; // 3)
  26. ; //If your app takes no parameters, then set this to =no//
  27. ; //A relative path is OK. e.g. APP_PARAMETERS=\subdir\motive.hyp /C
  28. ; //e.g. If CD-ROM drive is D: then the commandline would be expanded to:
  29. ; // D:\SUBDIR\MYAPP.EXE D:\SUBDIR\MOTIVE.HYP /C
  30.  
  31. APP_PARAMETERS=autorun.txt
  32.  
  33.  
  34.  
  35. ; // 4)
  36. ; //If you want the current path inserted before APP_PARAMETERS then set this to yes//
  37. ; //If OnlyPassDrive=yes, then only the drive root directory is prepended//
  38. ; //Ignored if APP_PARAMETERS=no //
  39.  
  40. ParameterPrependPath=yes
  41.  
  42.  
  43. ; // 5)
  44. ; //This must be the same as DateFile= entry in SETUP.INI//
  45. ; //If this file is absent in the \SYSTEM directory, then APP_SETUP is run//
  46. ; //If this file is present in the \SYSTEM directory, then APP_TO_RUN is run//
  47. ; //Your installer should copy/create this file, and the Uninstaller delete it//
  48.  
  49. DATFILE=GBSETUP.DAT