vicismar wrote:
I created an install routine using WINZIP9, and an uninstall batch program, though the .BAT file is giving me fits:
APPDELETE
ECHO Y| DEL C:\PROGRA~1\APP
ECHO Y| RMDIR C:\PROGRA~1\APP
ECHO Y| DEL C:\WINDOWS\DESKTOP\APP.LNK
ECHO Y| DEL C:\WINDOWS\STARTM~1\PROGRAMS\APP
ECHO Y| RMDIR C:\WINDOWS\STARTM~1\PROGRAMS\APP
DEL C:\PROGRA~1\APPDEL~1.BAT
@echo off
CLS
Now, everything works fine, but it does not delete itself. Any help would be greatly appreciated.
I would try two things:
Name the batch file with 8 character convention (likecall it APPDEL.BAT)
.
make DEL C:\PROGRA~1\APPDEL.BAT the last line of code.
Does that work?
Manta