home *** CD-ROM | disk | FTP | other *** search
/ GameStar Special 2004 March / GSSH0304CD1.iso / WarCraft3 / Nerzhulsreturn / nerzhul103b_setup.exe / uninstall.bat < prev    next >
DOS Batch File  |  2003-10-07  |  1KB  |  34 lines

  1.    @Echo Off
  2.     CLS
  3.     Echo =============================================================================
  4.     Echo = Ner'Zhul's Return v1.03b. (C) The Patton Crew, 2003. All Rights Reserved. =
  5.     Echo =============================================================================
  6.     Echo.
  7.     Echo This will uninstall Ner'Zhul's Return from your system.
  8.     Echo Do you wish to continue with the uninstall? ( Y, N )
  9.     Echo.
  10. :: Assume 'Y'
  11.     Set _=Y
  12. :: Create the dummy file, a batch file that sets the _ variable to N
  13.     Echo Set _=N>%TEMP%.\_.BAT
  14. :: Del /P the dummy file
  15.     Del /P %TEMP%.\_.BAT > NUL
  16.     If Exist %TEMP%.\_.BAT For %%C In (Call Del) Do %%C %TEMP%.\_.BAT
  17. :: Test the _ variable, for example...
  18.     If %_%'==N' Goto Abort
  19.     Set _=
  20.  
  21.     Echo Moving backup of Reign of Chaos War3Patch.mpq file.
  22.     Cd Backup
  23.     Copy War3Patch.mpq ..
  24.     Echo Deleting backup folders.
  25.     Del War3Patch.mpq
  26.     Cd ..
  27.     Rmdir Backup
  28.     Echo Uninstallation sucessful.
  29.     Goto End
  30.  
  31. :Abort
  32.     Echo Uninstall aborted.
  33.  
  34. :End