home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip Hitware 3
/
CHIP_HITWARE3.iso
/
chiphit3
/
tools
/
95mmouse
/
mbut-del.cmd
< prev
next >
Wrap
OS/2 REXX Batch file
|
1996-06-07
|
2KB
|
81 lines
@echo off
if "%1" == "" goto done
if exist "%1\*.*" goto doit1
if exist "%1 %2\*.*" goto doit2
if exist "%1 %2 %3\*.*" goto doit3
if exist "%1 %2 %3 %4\*.*" goto doit4
goto done
:doit4
echo You are about to remove Middle Mouse Button ver 1.9.0e
echo from %1 %2 %3 %4
echo.
yesno Do you wish to continue with this un-install process
if errorlevel 1 goto YES4
goto DONE
:YES4
echo.
if exist "%1 %2 %3 %4\MBUTTON.EXE" "%1 %2 %3 %4\MBUTTON.EXE" -uninstall
if exist "%1 %2 %3 %4\MBUT*.TXT" del "%1 %2 %3 %4\MBUT*.TXT"
if exist "%1 %2 %3 %4\MBUT*.WRI" del "%1 %2 %3 %4\MBUT*.WRI"
if exist "%1 %2 %3 %4\MBUTTON.EXE" del "%1 %2 %3 %4\MBUTTON.EXE"
if exist "%1 %2 %3 %4\MBHOOK.DLL" del "%1 %2 %3 %4\MBHOOK.DLL"
rd "%1 %2 %3 %4"
goto done1
:doit3
echo You are about to remove Middle Mouse Button ver 1.9.0e
echo from %1 %2 %3
echo.
yesno Do you wish to continue with this un-install process
if errorlevel 1 goto YES3
goto DONE
:YES3
echo.
if exist "%1 %2 %3\MBUTTON.EXE" "%1 %2 %3\MBUTTON.EXE" -uninstall
if exist "%1 %2 %3\MBUT*.TXT" del "%1 %2 %3\MBUT*.TXT"
if exist "%1 %2 %3\MBUT*.WRI" del "%1 %2 %3\MBUT*.WRI"
if exist "%1 %2 %3\MBUTTON.EXE" del "%1 %2 %3\MBUTTON.EXE"
if exist "%1 %2 %3\MBHOOK.DLL" del "%1 %2 %3\MBHOOK.DLL"
rd "%1 %2 %3"
goto done1
:doit2
echo You are about to remove Middle Mouse Button ver 1.9.0e
echo from %1 %2
echo.
yesno Do you wish to continue with this un-install process
if errorlevel 1 goto YES2
goto DONE
:YES2
echo.
if exist "%1 %2\MBUTTON.EXE" "%1 %2\MBUTTON.EXE" -uninstall
if exist "%1 %2\MBUT*.TXT" del "%1 %2\MBUT*.TXT"
if exist "%1 %2\MBUT*.WRI" del "%1 %2\MBUT*.WRI"
if exist "%1 %2\MBUTTON.EXE" del "%1 %2\MBUTTON.EXE"
if exist "%1 %2\MBHOOK.DLL" del "%1 %2\MBHOOK.DLL"
rd "%1 %2"
goto done1
:doit1
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.EXE" -uninstall
if exist "%1\MBUT*.TXT" del "%1\MBUT*.TXT"
if exist "%1\MBUT*.WRI" del "%1\MBUT*.WRI"
if exist "%1\MBUTTON.EXE" del "%1\MBUTTON.EXE"
if exist "%1\MBHOOK.DLL" del "%1\MBHOOK.DLL"
rd "%1"
:done1
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