home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 2000 February
/
PCWorld_2000-02_cd.bin
/
Software
/
Vyzkuste
/
awave
/
Setup.exe
/
RCDATA
/
UNINST_BAT
< prev
Wrap
Text File
|
2000-01-01
|
1KB
|
53 lines
@echo off
cd %1
cls
echo -------------------------------------------------------------------------------- Awave Audio uninstallation procedure FMJ-Software --------------------------------------------------------------------------------
echo Uninstalling... (%1)
rem ** Clean up the registry **
if exist awaveaud.exe goto runexe
echo Error: Could not find AwaveAud.exe
echo.
echo Uninstallation aborted!
goto end
:runexe
echo Cleaning up the registry...
dir > awblock
awaveaud.exe -UNINSTALL
:wait
if exist awblock goto wait
rem ** Delete files? **
if not exist awdel goto nodel
echo Deleting files...
del awdel
if exist awaveaud.gid attrib -h awaveaud.gid
:retry
del awaveaud.*
if exist awaveaud.exe goto retry
if exist setup.exe del setup.exe
if exist file_id.diz del file_id.diz
del *.txt
echo.
echo Done!
echo.
echo.
echo.
echo.
echo.
echo.
echo.
echo.
del uninst.bat
goto end
:nodel
echo.
echo Done! (No files deleted).
echo.
:end