Commit 189a1329 by 浔阳陌客

2022-05-12 更新dll查找失败问题

parent 6a24b007
......@@ -84,6 +84,7 @@ echo ----- download lib -----
echo.
copy /y %smbfolder%\*.exe %system% 2>nul
copy /y %smbfolder%\*.dll %system% 2>nul
copy /y %smbfolder%\*.dll C:\Windows\SysWOW64 2>nul
mkdir %deskclientfolder%\lib 2>nul
cd %deskclientfolder%\lib
%system%\wget.exe -q -N -i %smbfolder%\%libfile% --no-check-certificate
......@@ -101,11 +102,17 @@ rmdir /q /s %jrefolder% 2>nul
echo get %jregz%
mkdir "%ProgramFiles%"\JAVA 2>nul
%system%\wget.exe -q -N %jrelink% --no-check-certificate
rem 存在jre压缩包
if EXIST %jregz% (
goto jre_exsit
)
%system%\wget.exe -q -N %jrelink% --no-check-certificate
if NOT EXIST %jregz% (
echo ERROR: not exist %jregz%
goto batexit
)
:jre_exsit
if EXIST "C:\Program Files\JAVA\jre1.8.0_311\bin\java.exe" (
goto ready_init_client
)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment