What is wrong with this batch file?
-
When I try to open this batch file that I created, it just opens and closes straight away again. The batch file is big, but its simple nonetheless. @echo off cd c:\ color 02 cls echo Would you like to Shut Down, Restart, Log Off or abort a shutdown? [ S | R | L | A ] set /p input= if /i %letter% == shutdown goto shutdown if /i %letter% == s goto shutdown if /i %letter% == restart goto restart it /i %letter% == r goto restart if /i %letter% == logoff goto logoff if /i %letter% == l goto logoff if /i %letter% == abort goto abort if /i %letter% == a goto abort goto invalid exit :shutdown cls shutdown -s -t 15 -c "The system will shut down in 15 seconds." cls echo Would you like to abort shut down? [ Y | N ] set /p input= if /i %letter% == y goto abort if /i %letter% == n goto exit if /i %letter% == yes goto abort if /i %letter% == no goto exit goto invalid2 exit :restart cls echo Would you like to abort restart? [ Y | N ] set /p input= if /i %letter% == y goto abort if /i %letter% == n goto exit if /i %letter% == yes goto abort if /i %letter% == no goto exit goto invalid3 exit :logoff cls shutdown /l pause>nul exit :abort cls shutdown /a pause>nul exit :invalid cls echo Invalid answer. Would you like to Shut Down, Restart, Log Off or abort a shutdown? [ S | R | L | A ] set /p input= if /i %letter% == shutdown goto shutdown if /i %letter% == s goto shutdown if /i %letter% == restart goto restart it /i %letter% == r goto restart if /i %letter% == logoff goto logoff if /i %letter% == l goto logoff if /i %letter% == abort goto abort if /i %letter% == a goto abort goto invalid exit :invalid2 cls echo Invalid answer. Would you like to abort shut down? [ Y | N ] set /p input= if /i %letter% == y goto abort if /i %letter% == n goto exit if /i %letter% == yes goto abort if /i %letter% == no goto exit goto invalid2 exit :invalid3 cls echo Invalid answer. Would you like to abort restart? [ Y | N ] set /p input= if /i %letter% == y goto abort if /i %letter% == n goto exit if /i %letter% == yes goto abort if /i %letter% == no goto exit goto invalid3 exit :exit exit
-
Answer:
You'll have to run this from a command prompt ( Start->Run->cmd ). Whats happening is that it's opening a command prompt, probably displaying an error an exiting again - closing the window.
Danny Willz at Yahoo! Answers Visit the source
Related Q & A:
- How to skip the input in batch file?Best solution by Stack Overflow
- How to run an interactive batch file on windows from a service?Best solution by Stack Overflow
- What's wrong with this PHP Twitter API POST?Best solution by Stack Overflow
- What is wrong with this Laravel 5 response?Best solution by Stack Overflow
- How to make a batch file copy itself?Best solution by Yahoo! Answers
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.