renvoyer le resultat d un .bat dans fichier txt puis l ouvrir

renvoyer le resultat d un .bat dans fichier txt puis l ouvrir - Shell/Batch - Programmation

Marsh Posté le 17-10-2008 à 11:22:57    

merci pour le coup de main je coince sur la commande pour renvoyer le resultat  d un fichier .bat dans un fichier texte et l ouvrir a l issue ;malgrés tout ce que j ai pu lire sur internet aucune ligne de commande ne marche............  
voici mon code  
 
echo off  
cls  
echo =====================  
echo ordinateur 1  
ping %1 -n 1 192.168.2.22| find /c "temps<" > NUL  
if %ERRORLEVEL% EQU 0 goto present1  
:erreur  
echo erreur  
goto fin1  
resent1  
echo OK  
:fin1  
echo.  
echo =====================  
echo ordinateur 2  
ping %1 -n 1 192.168.2.50| find /c "temps<" > NUL  
if %ERRORLEVEL% EQU 0 goto present2  
:erreur  
echo erreur  
goto fin2  
resent2  
echo OK  
:fin2  
 
PAUSE

Reply

Marsh Posté le 17-10-2008 à 11:22:57   

Reply

Marsh Posté le 20-10-2008 à 19:21:22    

Pas testé mais comme ca ca doit aller mieux :  
 
if ERRORLEVEL 0 goto resent1    
:erreur  
echo erreur  
goto fin1  
:resent1  
echo OK  
:fin1  


---------------

Reply

Sujets relatifs:

Leave a Replay

Make sure you enter the(*)required information where indicate.HTML code is not allowed