Subversion Repositories nw_plus

Rev

Rev 1 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
78 h266 1
@echo off
2
 
1 h266 3
echo You are about to delete all files relevant to NW+.
4
echo Continue?
5
echo.
6
pause
7
echo.
8
echo Do not worry about any missing file errors.
9
echo.
10
pause
11
echo.
12
if exist nw_plus\ goto normal
13
cd ..
14
if exist nw_plus\ goto normal
15
echo Unusual directory modifications detected.
16
echo Move this batch file to the proper place or uninstall NW+ manually.
17
echo.
18
pause
19
goto end
20
 
21
:normal
22
cd nw_plus
23
move NWINTER.GRP ..\
24
cd ..
25
rd /s /q nw_plus
26
if exist NW*.bat del NW*.bat
27
echo.
28
echo Complete. :(
29
echo.
30
pause
31
goto end
32
 
33
:end