1 |
< |
SLEEP 1 |
2 |
< |
REM %~dp is the directory of the batch file |
3 |
< |
if exist %~dp\AEInstaller.exe ( |
4 |
< |
if exist %~dp\..\..\..\install\AEInstaller.exe ( |
5 |
< |
DEL %1 |
1 |
> |
PING -n 1 127.0.0.1>nul |
2 |
> |
cd "%~dp0" /D |
3 |
> |
if exist AEInstaller.exe ( |
4 |
> |
if exist .\..\..\..\install\AEInstaller.exe ( |
5 |
> |
DEL .\..\..\..\install\AEInstaller.exe |
6 |
|
) |
7 |
< |
else ( |
8 |
< |
exit |
9 |
< |
) |
10 |
< |
MOVE %~dp/AEInstaller.exe %~dp\..\..\..\install\ |
11 |
< |
START %~dp\..\..\..\install\AEInstaller.exe |
7 |
> |
|
8 |
> |
COPY AEInstaller.exe .\..\..\..\install\ |
9 |
> |
START ..\..\..\install\AEInstaller.exe |
10 |
|
) |
13 |
– |
ELSE ( |
14 |
– |
START %~dp\AEInstaller.exe |
15 |
– |
) |