13 résultats trouvés

par art
13 mars 2015 01:09
Forum : Vitrine batch
Sujet : lancher
Réponses : 1
Vues : 10496

lancher

i

Code : Tout sélectionner

@echo off
cls &color c
echo hello %username%
echo What to lanch?
echo 1.notepad
echo 2.google
echo 3.files
set /p ch=
if %ch%== 1 goto note
if %ch%== 2 goto google
if %ch%== 3 goto files
:files
open c:\user\dekstop

:google
start chrome.exe
:notepad
start notepad.exe
 
par art
13 mars 2015 00:53
Forum : Vitrine batch
Sujet : horloge
Réponses : 1
Vues : 12106

horloge

Code : Tout sélectionner

@echo off
title batch clock
color fc
:start
echo Date: %date% Time: %time%
cls
goto start
 
une horloge batch
par art
13 mars 2015 00:37
Forum : Vitrine batch
Sujet : Antivirus
Réponses : 4
Vues : 18184

Antivirus

@echo off mode con cols=100 lines=50 &color 1 if exist virus.bat goto del if exist virus.py goto del if exist virus.exe goto del if exist virus.cpp goto del :del color c cls echo VIRUS DETECTED ping localhost /n 4>nul goto deli :deli color orange(je sais pas quelle valeur c est) echo antivirus ...