home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
GameStar Special 2004 March
/
GSSH0304CD1.iso
/
WarCraft3
/
Nerzhulsreturn
/
nerzhul103b_setup.exe
/
uninstall.bat
< prev
next >
Wrap
DOS Batch File
|
2003-10-07
|
1KB
|
34 lines
@Echo Off
CLS
Echo =============================================================================
Echo = Ner'Zhul's Return v1.03b. (C) The Patton Crew, 2003. All Rights Reserved. =
Echo =============================================================================
Echo.
Echo This will uninstall Ner'Zhul's Return from your system.
Echo Do you wish to continue with the uninstall? ( Y, N )
Echo.
:: Assume 'Y'
Set _=Y
:: Create the dummy file, a batch file that sets the _ variable to N
Echo Set _=N>%TEMP%.\_.BAT
:: Del /P the dummy file
Del /P %TEMP%.\_.BAT > NUL
If Exist %TEMP%.\_.BAT For %%C In (Call Del) Do %%C %TEMP%.\_.BAT
:: Test the _ variable, for example...
If %_%'==N' Goto Abort
Set _=
Echo Moving backup of Reign of Chaos War3Patch.mpq file.
Cd Backup
Copy War3Patch.mpq ..
Echo Deleting backup folders.
Del War3Patch.mpq
Cd ..
Rmdir Backup
Echo Uninstallation sucessful.
Goto End
:Abort
Echo Uninstall aborted.
:End