home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 2001 July
/
PCWorld_2001-07_cd.bin
/
Software
/
TemaCD
/
awavest
/
Setup.exe
/
RCDATA
/
UNINST_BAT
< prev
Wrap
Text File
|
2001-05-12
|
1KB
|
55 lines
@echo off
cd %1
cls
echo -------------------------------------------------------------------------------- Awave Studio uninstallation procedure FMJ-Software --------------------------------------------------------------------------------
echo Uninstalling... (%1)
rem ** Clean up the registry **
if exist awave.exe goto runexe
echo Error: Could not find Awave.exe
echo.
echo Uninstallation aborted!
goto end
:runexe
echo Cleaning up the registry...
dir > awblock
awave.exe -UNINSTALL
:wait
if exist awblock goto wait
rem ** Delete files? **
if not exist awdel goto nodel
echo Deleting files...
del awdel
if exist awave.gid attrib -h awave.gid
:retry
del awave.*
if exist awave.exe goto retry
if exist setup.exe del setup.exe
if exist aw2wf16.exe del aw2wf16.exe
if exist file_id.diz del file_id.diz
del *.txt
del *.dll
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