home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a113 / 1.img / UNINSTAL.BAT < prev    next >
Encoding:
DOS Batch File  |  1987-03-15  |  2.4 KB  |  95 lines

  1. echo off
  2. cls
  3. echo 
  4. echo                dBASE III PLUS VERSION 1.1
  5. echo              HARD DISK UNINSTALL PROCEDURE 
  6. echo 
  7. echo The UNINSTAL procedure allows you to remove a copy of dBASE III
  8. echo PLUS and dBASE ADMINISTRATOR from your hard disk.
  9. echo 
  10. if "%1==" goto Help
  11. for %%f in (C:,c:,D:,d:,E:,e:,F:,f:,G:,g:,H:,h:,Y:,y:) do if %1.==%%f. goto START
  12. for %%f in (I:,i:,J:,j:,K:,k:,L:,l:,M:,m:,N:,n:,O:,o:,P:,p:,Z:,z:) do if %1.==%%f. goto START
  13. for %%f in (Q:,q:,R:,r:,S:,s:,T:,t:,U:,u:,V:,v:,W:,w:,X:,x:) do if %1.==%%f. goto START
  14. goto BADDRIVE
  15. :START
  16. if "==%2" goto DBASE
  17. if %2.==DBA. goto DBA
  18. if %2.==dba. goto DBA
  19. goto Help
  20. :DBASE
  21. echo dBASE III PLUS will be uninstalled from drive %1
  22. echo 
  23. yn Y N 30 Do you want to continue (Y/N)?
  24. if ERRORLEVEL 1 goto DBASE1
  25. goto END
  26. :DBASE1
  27. if not exist %1dbase.exe goto NotXit
  28. echo 
  29. echo Removing files from drive %1 . . .
  30. echo 
  31. del %1dbase.exe
  32. del %1dbaseinl.ovl
  33. del %1dbase.msg
  34. if exist %1config.db del %1config.db
  35. if exist %1config.sys del %1config.sys
  36. del %1dbase.ovl
  37. del %1assist.hlp
  38. del %1help.dbs
  39. echo 
  40. echo dBASE III PLUS has been successfully uninstalled.
  41. echo 
  42. goto End
  43. :DBA
  44. echo dBASE ADMINISTRATOR will be uninstalled from drive %1
  45. echo 
  46. yn Y N 30 Do you want to continue (Y/N)?
  47. if ERRORLEVEL 1 goto Ad1
  48. goto END
  49. :Ad1
  50. if not exist %1dba.lod goto NotDBA
  51. echo Erasing files from drive %1 . . .
  52. echo 
  53. del %1dba.lod
  54. del %1dbase.msg
  55. if exist %1help.dbs del %1help.dbs
  56. if exist %1assist.hlp del %1assist.hlp
  57. if exist %1protect.exe del %1protect.exe
  58. del %1dba.ovl
  59. if exist %1login.db del %1login.db
  60. echo 
  61. echo dBASE ADMINISTRATOR has been successfully uninstalled
  62. echo 
  63. goto END
  64. :Help
  65. echo You entered the command incorrectly.  The correct syntax is:
  66. echo 
  67. echo     "UNINSTAL <drive:>"        To uninstall dBASE III PLUS.
  68. echo 
  69. echo     "UNINSTAL <drive:> DBA"        To uninstall dBASE ADMINISTRATOR.
  70. echo 
  71. echo Uninstall is aborted.
  72. goto End
  73. :NotXit
  74. echo 
  75. echo dBASE III PLUS does not exist in the destination drive.
  76. goto ABORT
  77. :NotDBA
  78. echo 
  79. echo dBASE ADMINISTRATOR does not exist in the destination drive.
  80. goto  ABORT
  81. :BADDRIVE
  82. echo 
  83. echo Invalid drive letter specified.  Uninstall is aborted.
  84. echo 
  85. goto Help
  86. :ErrDBA
  87. echo 
  88. echo dBASE ADMINISTRATOR uninstall has been aborted.
  89. echo 
  90. goto END
  91. :ABORT
  92. echo Uninstall is aborted.
  93. echo 
  94. :End
  95.