Bon voila c'est le fichier .bat pour le faire marcher il vous suffit de le copier dans un ficher texte est l'enregistrer sous le nom "ventilo commande" il suffira ensuite de changer l'extension .txt en .bat
Ensuite placer le dans un dossier qui s'appellera "controle_ventilo" dans C:
il faudra aussi ajouté smc.exe dans ce dossier il se trouve
ici
pour lancer le programme il vous suffira de double clicker sur "ventilo commande"
@ECHO OFF
cls
:menu
ECHO.
ECHO .::Menu::.
ECHO a 2000tr/min
ECHO z 4000tr/min
ECHO e 6000tr/min
ECHO r fin
ECHO.
set choice=
set /p choice=Votre choix ?
if not '%choice%'=='' set choice=%choice:~0,1%
if %choice%==a goto 2000
if %choice%==z goto 4000
if %choice%==e goto 6000
if %choice%==r goto fin
echo Le choix %choice% n'est pas valide.
echo.
goto menu
:2000
call C:\controle_ventilo\smc.exe
call c:\controle_ventilo\smc 2000
pause>nul
goto menu
:4000
call C:\controle_ventilo\smc.exe
call c:\controle_ventilo\smc 4000
pause>nul
goto menu
:6000
call C:\controle_ventilo\smc.exe
call c:\controle_ventilo\smc 6000
pause>nul
goto menu
:fin
bye