home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip Hitware 3
/
CHIP_HITWARE3.iso
/
chiphit3
/
tools
/
95mmouse
/
mbut-del.bat
< prev
next >
Wrap
DOS Batch File
|
1996-06-07
|
684b
|
27 lines
@echo off
if "%1"=="" goto done
if not exist %1\*.* goto done
echo You are about to remove Middle Mouse Button ver 1.9.0e
echo from %1.
echo.
yesno Do you wish to continue with this un-install process
if errorlevel 1 goto YES1
goto DONE
:YES1
echo.
if exist %1\MBUTTON.EXE %1\MBUTTON -uninstall
if exist %1\MBUT*.TXT del %1\MBUT*.TXT
if exist %1\MBUT*.WRI del %1\MBUT*.WRI
if exist %1\MBHOOK.DLL del %1\MBHOOK.DLL
if exist %1\MBUTTON.EXE del %1\MBUTTON.EXE
rd %1
echo.
echo Middle Mouse Button ver 1.9.0e has been removed.
echo.
echo You will need to manually delete any program groups
echo or icons which relate to this application.
echo.
pause
:done
EXIT