Kod: Tümünü seç
@echo off
echo.
echo Windows yeniden baslatilsin mi? (E/H)
set /p choice=
If %choice% == e goto restart
echo.
echo Yeniden baslatma iptal edildi...Lutfen komut istemcisini kapatin
:restart
shutdown /r /t 0
exitKod: Tümünü seç
@echo off
echo.
echo Windows yeniden baslatilsin mi? (E/H)
set /p choice=
If %choice% == e goto restart
echo.
echo Yeniden baslatma iptal edildi...Lutfen komut istemcisini kapatin
:restart
shutdown /r /t 0
exitKod: Tümünü seç
@echo off
echo Windows yeniden baslatilsin mi? (E/H)
set /p choice=
If %choice% == e goto restart else h goto iptal
:iptal
echo.
echo Yeniden baslatma iptal edildi...
:restart
shutdown /r /t 0
exit
Kod: Tümünü seç
@echo off
set /p ask=Yeniden başlasın mı (e/h)
if %ask%==e (shutdown /r /t 0) else echo işlem iptal edildi
pause
exit