Il permet de démarrer des lignes WI.HDL.
Une ligne WI.HDL est un phantom uv qui permet le traitement en basic d'une requête HTTP.
Le WI.HDL.MNG est démarré à partir d'un fichier vbs qui est lancé dans les tâches planifiées.
Ce fichier “WIHDLMNG.vbs” exécute le fichier “WIHDLMNG.bat”.
Le fichier ““WIHDLMNG.bat” vérifie que le service “universe” est démarré.
S'il n'est pas démarré, il attend 60 secondes et revérifie ensuite. Il essaye maximum 10 fois.
Si le service universe est démarré, il démarre le WI.HDL.MNG.
Set WshShell = WScript.CreateObject("WScript.Shell") WshShell.run "%comspec% /c WIHDLMNG.bat",0 Set WshShell = Nothing
@echo off echo Start WI.HDL-MNG setlocal EnableDelayedExpansion for %%v in (1 2 3 4 5 6 7 8 9 10) do ( sc query "universe" | find "RUNNING" if "!errorlevel!"=="0" ( echo universe running E: cd E:\INTEGRIX\UVDB\WEB E:\INTEGRIX\UVDB\UV\bin\uv.exe "PHANTOM SQUAWK WI.HDL.MNG" exit ) else ( echo universe is not running timeout /t 60 ) ) echo fin WI.HDL-MNG exit
— Manu Fernandes 01/02/2019 15:31 c.f. Start UV.COLDSTART on Universe started