home *** CD-ROM | disk | FTP | other *** search
/ Frozen Fish 2: PC / frozenfish_august_1995.bin / bbs / d08xx / d0827.lha / AskVersion / AskVersion.doc < prev    next >
Text File  |  2001-02-25  |  2KB  |  52 lines

  1.  
  2.  
  3.  
  4.  
  5.                      Documentation AskVersion 0.1
  6.  
  7.  
  8.  
  9. AskVersion is a piece of freely distributable PublicDomain software.
  10.  
  11. AskVersion is a small utility which can be started as first command
  12. of your startup-sequence to find out on which kickstart version you
  13. are booting up. If you are using kickstart 1.3 it will WARN
  14. (ReturnCode = 5). This can be easily examined within the startup-script
  15. and lets you jump to a WB1.3 startup-script. On OS 2.0 it will do
  16. nothing.
  17.  
  18. Example:
  19.  
  20.     ; This is an example startup-sequence
  21.     ; All commands here have to be from your WBench 1.3 C: directory
  22.  
  23.     AskVersion              ; Find out the Kickstart version
  24.     C:if WARN               ; Kickstart 1.2 or 1.3
  25.         MoveSys Sys:WB1.3/  ; Example Sys:WB1.3 is now sys:
  26.                             ; c: l: s: devs: fonts: etc = WB1.3/c ...
  27.         Execute s:Startup-Sequence.13
  28.                             ; This is a WBench 1.3 startup script
  29.                             ; which is now located in Sys:WB1.3/s
  30.         Quit                ; the end
  31.     ELSE                    ; Else we use OS 1.4, 2.0 or greater
  32.         Execute s:Startup-Sequence.20
  33.                             ; This is a WBench 2.0 startup script
  34.                             ; which is still located in Sys:s
  35.         Quit                ; the end
  36.     ENDIF
  37.  
  38.     ; In this example you must at mininmum have the `If` command from
  39.     ; your WBench 1.3/c drawer in your c: directory; thats why the `C:If`.
  40.  
  41.  
  42. Try it ...
  43.  
  44. Have Fun ...
  45.  
  46.     Hans-Peter Guenther
  47.     Gruener Weg 5
  48.     3501 Fuldatal 2
  49.     W-Germany
  50.  
  51.  
  52.