- Mesajlar
- 1,002
Merhaba arkadaşlar;
Cmd'de aşağıdaki komutları bat dosyasına yazıp çalıştırdığımda "... şu an beklenmiyordu diyor." Nasıl çözebiliriz.
Saygılarımla
@echo off
@CHOICE /C:EFGHI
IF ERRORLEVEL I GOTO five
IF ERRORLEVEL H GOTO four
IF ERRORLEVEL G GOTO three
IF ERRORLEVEL F GOTO two
IF ERRORLEVEL E GOTO one
GOTO end
ne
attrib -h -r -s /s /d E:\*.*
GOTO end
:two
attrib -h -r -s /s /d F:\*.*
GOTO end
:three
attrib -h -r -s /s /d G:\*.*
GOTO end
:four
attrib -h -r -s /s /d H:\*.*
GOTO end
:five
attrib -h -r -s /s /d I:\*.*
:end
@PAUSE
Cmd'de aşağıdaki komutları bat dosyasına yazıp çalıştırdığımda "... şu an beklenmiyordu diyor." Nasıl çözebiliriz.
Saygılarımla
@echo off
@CHOICE /C:EFGHI
IF ERRORLEVEL I GOTO five
IF ERRORLEVEL H GOTO four
IF ERRORLEVEL G GOTO three
IF ERRORLEVEL F GOTO two
IF ERRORLEVEL E GOTO one
GOTO end

attrib -h -r -s /s /d E:\*.*
GOTO end
:two
attrib -h -r -s /s /d F:\*.*
GOTO end
:three
attrib -h -r -s /s /d G:\*.*
GOTO end
:four
attrib -h -r -s /s /d H:\*.*
GOTO end
:five
attrib -h -r -s /s /d I:\*.*
:end
@PAUSE