home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 April / Chip_2001-04_cd1.bin / sharewar / avdisk / AVDISK.BAT < prev    next >
DOS Batch File  |  2000-06-23  |  1KB  |  57 lines

  1. @Echo Off
  2. Cls
  3. Echo AVDisk 7
  4. Echo ========
  5. Echo.
  6.  
  7. If Exist Install.Exe Goto InstallError
  8. If Not Exist PKZip.Exe Goto PKError
  9. If Not Exist PKUnZip.Exe Goto PKError
  10. Goto TempCheck
  11. :InstallError
  12. Echo Error - AVDisk is not installed yet!
  13. Echo.
  14. Echo Before attempting to use AVDisk please follow the installation
  15. Echo instructions contained in AVDisk.Txt
  16. Echo.
  17. Echo If you have manually installed AVDisk, you can bypass this error
  18. Echo message by removing the Install.Exe program file from this folder.
  19. Pause
  20. Goto End
  21.  
  22. :PKError
  23. Echo Error - Can't find the required PKWare software
  24. Echo.
  25. Echo The PKZip and PKUnZip utilities are used by AVDisk to compress and store
  26. Echo anti-virus programs on floppy disks. Please visit:
  27. Echo.
  28. Echo    http://www.pkware.com
  29. Echo.
  30. Echo Download PKZip for DOS version 2.50 or higher, save the PKZip
  31. Echo software in your AVDisk folder and then run it once. It will
  32. Echo automatically decompress itself and you can then run AVDisk.
  33. Echo.
  34. Echo Please see the AVDisk.Txt file for more information.
  35. Pause
  36. Goto End
  37.  
  38.  
  39. :TempCheck
  40. If Not %Temp%*==* Goto Continue
  41. Echo Error - Can't find Temp directory
  42. Echo Please set Temp environment variable.
  43. Echo Example: Set Temp=C:\Windows\Temp
  44. Pause
  45. Goto End
  46.  
  47.  
  48. :Continue
  49. MD %Temp%\AVDisk >Nul
  50. Copy PKZip.Exe %Temp%\AVDisk /Y >Nul
  51. PKUnZip -e -o -sAVDisk7 Files.Zip *.Bat %Temp%\AVDisk >Nul
  52. Command /E:1024 /C %Temp%\AVDisk\AVDisk1.Bat %1
  53. Deltree /Y %Temp%\AVDisk >Nul
  54. CD \
  55.  
  56.  
  57. :End