How to make a batch file to run a line of code in CMD?
-
I'm setting up a basic FTP server and there's a line of code I need to run (c:\python27\python -m SimpleHTTPServer 8080) to start the server. I want to make a batch file with @echo off to hide the CMD window. Anyone know how to make a batch file that I can double click and it will run "c:\python27\python -m SimpleHTTPServer 8080" in the background in a CMD windows? Thanks, Dylan
-
Answer:
This minimizes the CMD window right away and then runs whatever follows the ":minimized" line. @echo off if not "%minimized%"=="" goto :minimized set minimized=true start /min cmd /C "%~dpnx0" goto :EOF :minimized python -m SimpleHTTPServer 8080
dylanm31... at Yahoo! Answers Visit the source
Other answers
open up notepad, copy paste the following lines on it @echo off c:\python27\python -m SimpleHTTPServer 8080 exit save it as a .bat file on your desktop
Peter
Related Q & A:
- How do I make a video file smaller?Best solution by Yahoo! Answers
- How to make a batch file copy itself?Best solution by Yahoo! Answers
- How to put a video file on to a disc?Best solution by wikihow.com
- How to make a PSP run faster?Best solution by ChaCha
- How to make a source file?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.