| 1. |
Solve : General format of a to run a program in window mode.? |
|
Answer» I was trying to run a video file with PLAYER. But I don't find the to run a program (specialy .EXE file). Why do people think Command Prompt can do all these magical things? It must seem very advanced to them. Like what uber-geeks do with their Unix boxes. As Arthur C. Clarke said, "Any sufficiently advanced technology is indistinguishable from magic". (His "third law of prediction".) Disregarding the "not in command prompt but windows mode" 1. If you want to play a vide with VLC player or something you would set VLC as the default program to start that kind of video file. With that being said, to start the video you would do: Code: [Select]start (path to video file) 2. Then if you want to play it for a certain amount of time you would do and start another program you would do: Code: [Select]start (path to file) ping 127.0.0.1 -n (amount of time to wait) taskkill (video).* start (path to microsoft word) This is all disregarding the windows mode THING. But you could put this in a batch file (a text file with a .bat extension) In response to Joedavis' post, you can just put the following: Code: [Select]start wmplayer start winword It is not what he wanted though. |
|