Results 1 to 7 of 7

Thread: Run programs in background

  1. #1
    Junior Member
    Join Date
    Jul 2010
    Liked
    0 times
    Posts
    46

    Default Run programs in background

    I think this is the right place to post this question.

    Guys, is there a way to run programs in background using command prompt.

    Please explain me clearly with an example.

    Actually in another site "start" command was mentioned but not clearly.

    Thank you

    To be more clear i want to run batch files in background.
    Last edited by dudebuster; 07-31-10 at 01:00 AM. Reason: Automerged Doublepost

  2. #2
    The Wizard meetdilip's Avatar
    Join Date
    Aug 2009
    Liked
    0 times
    Posts
    8,563

    Default

    If you trying to set up a night unlimited set up, try this link

    http://www.indiabroadband.net/bsnl-b...tml#post154907 (NU Configuration)

  3. #3
    Junior Member
    Join Date
    Jul 2010
    Liked
    0 times
    Posts
    46

    Default

    Thank you Dilip for your co-operation.

    I have a solution to run batch files in background. I found this in another forum. I don't remember the site URL.

    So,to run a batch file in background, you need two batch files and one vb script file.

    In one batch file put in the commands you need to execute and save it. (say abc.bat)

    Then, open a notepad and put this statement
    -----------------------------------------------------------------------------
    CreateObject("Wscript.Shell").Run """" & WScript.Arguments(0) & """", 0, False
    -----------------------------------------------------------------------------

    save the file as invisible.vbs

    Now,create another batch file and enter the following command

    -------------------------------------------------------------------------------
    wscript.exe "complete path of the invisible vbs file" "abc.bat"
    -------------------------------------------------------------------------------

    save this file as launch.bat.

    It is advicable to save the three files in the same location.

    In window 7,you need to run the three files in 'Administrator' compatibility

    You're done. Run the 'launch.bat' and now the file 'abc.bat' is executed in the background.

    If you have any queries please post it in the forum.

  4. #4
    The Wizard meetdilip's Avatar
    Join Date
    Aug 2009
    Liked
    0 times
    Posts
    8,563

    Default

    Thanks for sharing

  5. #5
    Junior Member
    Join Date
    Jul 2010
    Liked
    0 times
    Posts
    46

    Default

    Thanks for the rep. . .

  6. #6
    Junior Member
    Join Date
    Aug 2010
    Liked
    0 times
    Posts
    1

    Default Run programs in background

    i need a way to run a program in the background so it doesnt use a window and can just be seen in the windows task manager.Win98se has a program called system information were you can turn off applications running in the background.
    ------------------------------------------------------------------------------
    Run programs in background

  7. #7
    Junior Member
    Join Date
    Jul 2010
    Liked
    0 times
    Posts
    46

    Default

    @mekloton

    Hey buddy, Which program you need to run in the background?

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. How do I change the background picture on my Windows desktop?
    By James Winson in forum Desktop Computer
    Replies: 5
    Last Post: 12-22-11, 11:50 PM
  2. Replies: 21
    Last Post: 07-30-10, 03:28 PM
  3. Replies: 3
    Last Post: 07-17-10, 12:08 PM
  4. Replies: 4
    Last Post: 04-30-10, 03:00 PM
  5. Replies: 1
    Last Post: 02-08-10, 02:54 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •