10 lines
358 B
Plaintext
10 lines
358 B
Plaintext
@echo off
|
|
REM Launch Dolibarr
|
|
REM ---------------
|
|
|
|
REM If no lock file, we call install process
|
|
IF NOT EXIST dolibarr_documents\install.lock start "WAMPBROWSER" http://localhost:WAMPAPACHEPORT/dolibarr/install/
|
|
|
|
REM If lock file exists, we call home page
|
|
IF EXIST dolibarr_documents\install.lock start "WAMPBROWSER" http://localhost:WAMPAPACHEPORT/dolibarr/
|