home *** CD-ROM | disk | FTP | other *** search
/ Inside Multimedia 1995 April / IMM0495.ISO / share / office / winlohn / winlsich.bat < prev    next >
DOS Batch File  |  1994-03-16  |  585b  |  20 lines

  1. echo off
  2. echo sichern.bat         :  Monatssicherung
  3. echo Aufruf              :  sichern jjmm    (Verzeichnis für Monat erst.
  4. echo Aufruf              :  sichern         (nur auf Diskette sichern)
  5. echo Beispiel (Januar 94):  sichern 9401
  6. echo Unterverzeichnis erstellen und Dateien dorthin kopieren
  7. echo wenn parameter eingegeben
  8. IF "%1" == "" GOTO DISKETTE
  9.      md %1
  10.      copy winlohn.ovd %1
  11.      copy winlstm.*   %1
  12.      copy winlkto.*   %1
  13. :DISKETTE
  14. echo Dateien auf Diskette sichern
  15.      copy winlohn.ovd a:
  16.      copy winlstm.*   a:
  17.      copy winlkto.*   a:
  18.  
  19.  
  20.