How to run an interactive batch file on windows from a service?

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

Was this solution helpful to you?

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:

Just Added Q & A:

Find solution

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.