Nginx Startup Scheduler
| Ağustos 18, 20191 2 3 4 5 6 7 8 9 10 11 12 | @ECHO OFF REM Start Nginx tasklist /FI "IMAGENAME eq nginx.exe" 2>NUL | find /I /N "nginx.exe">NUL IF NOT "%ERRORLEVEL%"=="0" ( REM Nginx is NOT running, so start it c: cd \nginx start nginx.exe ECHO Nginx started. ) else ( ECHO Nginx is already running. ) |