124 private links
Windows updates missing but already installed
OculusSetup.exe /bypassHotfixCheck
Go there and click play
Désactive tes spyware
@Echo off
GOTO Menu
:Menu
Echo ----------------------------------------
Echo ! Gestion de l'arret du systeme !
Echo ----------------------------------------
Echo 1 - Planifier un arret du systeme.
Echo 2 - Planifier un redemarrage du systeme.
Echo 3 - Annuler l'arret planifier.
Echo ----------------------------------------
SET /p Action=Votre Choix :
IF %Action% == 1 GOTO PlanifierArret
IF %Action% == 2 GOTO PlanifierRedemarrage
IF %Action% == 3 GOTO AnnulerPlanification
IF %Action% GTR 3 GOTO SaisieIncorrecte
:AnnulerPlanification
shutdown -a
Echo Planification Annulee
Goto FinProgramme
:PlanifierRedemarrage
Echo Info : 1 heure = 3600 secondes
SET /p Secondes= Secondes avant le redemarrage du systeme :
IF '%Secondes%' == '' GOTO PlanifierRedemarrage
shutdown -r -t %Secondes%
GOTO FinProgramme
:PlanifierArret
Echo Info : 1 heure = 3600 secondes
SET /p Secondes= Secondes avant l'arret du systeme :
IF '%Secondes%' == '' GOTO PlanifierArret
shutdown -s -f -t %Secondes%
GOTO FinProgramme
:SaisieIncorrecte
CLS
Echo ! ! ! ! ! ! Valeur saisie incorrecte ! ! ! ! ! !
GOTO Menu
:FinProgramme