|
| ||||||||||
| Tags: bat, bat file, code, command prompt, windows xp |
![]() |
| | Thread Tools | Search this Thread |
|
#1
| |||
| |||
| BAT File to Run 3 Programs
to work. Here's my current code: @echo off start "C:\Program Files\PhraseExpress\phrase.exe" start "C:\Program Files\MemInfo\meminfo.exe" start "E:\Software\ultra-cpu-monitor_eng\ultra-cpu-monitor.exe" When run, I get a Command Prompt box, with the path/file name at the top, with the command at the directory where the BAT file is, and the programs do not open. Any ideas how to get this to work? Thanks for any help. |
|
#2
| |||
| |||
| Re: BAT File to Run 3 Programs
start "Title" "C:\Program Files\PhraseExpress\phrase.exe" |
|
#3
| |||
| |||
| Re: BAT File to Run 3 Programs
All Dos COMMANDS... For Batch files Click the ( B ) Man I used to know all these Commands in the 80's Before windows . |
|
#4
| |||
| |||
| Re: BAT File to Run 3 Programs
Thanks very much. I had seen the "title" in my search for help but I thought it wasn't required. I should have tried it. Problem solved! |
|
#5
| |||
| |||
|
hi. i am having a similar problem. i want to make a batch file that just copies a folder from my network onto my local disk. heres the code im running, @echo off f:\ cd\apps xcopy *.* c:\apps /s when i click on the bat file nothing happens. thx in advance |
|
#6
| |||
| |||
| Re: BAT File to Run 3 Programs
Test it - troubleshoot it... Open a command prompt and run it from the command prompt and don't put in the @echo off until you get it working. Or try each line in a command prompt one at a time - if it doesn't work there - it is not going to work in a batch script. also... xcopy f:\apps c:\apps /e /i /h /r /g /c /k /x /y That should copy everything from f:\apps to c:\apps (creating c:\apps if it does not exist, copying everything including all subdirectories from f:\apps, continuing on errors, copying the permissions and even encrypted files that it comes across and answering any questions to the affirmative...) |
|
#7
| |||
| |||
| Re: BAT File to Run 3 Programs
Hi I am having trouble with this program i am making. I want to start a vbs file at the end but it will not let me. Here I will show you my code: @echo off Title hello world echo hihih cls start "C:\Users\Dilon McFarlane\Desktop\grinder.vbs" Can you help me please? |
|
#8
| |||
| |||
| Re: BAT File to Run 3 Programs Quote:
|
![]() |
|
| Thread Tools | Search this Thread |
| |
Similar Threads for: "BAT File to Run 3 Programs" | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| How to redirect the output of two programs in the same file | Zombi | Software Development | 5 | 24-02-2010 09:55 PM |
| Steps to make .exe file of the Java programs | Harper 21 | Software Development | 5 | 25-01-2010 07:44 AM |
| Some programs does not open - File properties missing | Warner | Operating Systems | 2 | 05-03-2009 06:38 PM |
| Best File Transfer Programs FTP according to you guys? | Kiran123 | Software Development | 4 | 16-02-2009 07:41 PM |
| Top 20 Best P2P file sharing programs and applications | kattman | Polls & Voting | 1 | 07-02-2009 09:16 AM |