Make output of setup.bat more explixit

because of a rant in https://sourceforge.net/p/webadmin/bugs/5332/ I updated the messages of setup,bat:

- the script is unoffical and try to guide unexperienced users
- offical information about setup is found at https://sourceforge.net/p/webadmin/bugs/5332/

As I don't know if Jamie supports and test Windows Installation or it's a "may work or not feature" we should also highligth the Windows support status an the offical page.
This commit is contained in:
Kay Marquardt
2019-12-15 10:50:27 +01:00
committed by GitHub
parent b17a218841
commit 63dddcb481

View File

@@ -1,6 +1,8 @@
@ECHO off
ECHO Helper Script to install Webmin on Windows
ECHO (c) gnadelwartz https:://gitbub.com/gnadelwartz
;; (c) gnadelwartz https:://gitbub.com/gnadelwartz
ECHO UNOFFICIAL helper script to guide less experienced users on Windows
ECHO for official information about installing webmin on Windows see:
ECHO http://www.webmin.com/windows.html
ECHO .
:: prepare unautenticated Setup
@@ -36,6 +38,7 @@ IF NOT EXIST %INSTALL% (
)
:: check if perl is installed
ECHO Check for Webmin prerequisites ...
IF EXIST %perl_path32% (
SET perl_path=%perl_path32%
ECHO Perl detected
@@ -44,7 +47,7 @@ IF EXIST %perl_path32% (
SET perl_path=%perl_path64%
echo Perl64 detected
) ELSE (
ECHO Perl is not installed! Please download it from
ECHO No Perl detected! Please adjust perl_path or download active state perl
ECHO %PERL_download% and install it!
start "" %PERL_download%
ECHO .
@@ -56,7 +59,7 @@ IF EXIST %perl_path32% (
WHERE process >nul 2>&1
IF %ERRORLEVEL% NEQ 0 (
ECHO Required process.exe is not installed! Please download it from
ECHO %PROCESS_download% and xopy it to C:\Windows!
ECHO %PROCESS_download% and copy it to C:\Windows!
start "" %PROCESS_download%
ECHO .
SET INSTALL=false
@@ -92,7 +95,8 @@ IF EXIST %INSTALL% (
SET perl_path=%perl_path%\bin\perl.exe
perl %INSTALL% %wa_dir%
) ELSE (
ECHO Webmin can not installed becasue of missing depedencies!
ECHO Webmin can not installed becasue of missing prerequisites!
ECHO see http://www.webmin.com/windows.html for manual installation instructions
)
ECHO .
PAUSE