|
Answer» I don't know if i'm in the right forum for this question, but the problem i'm having is RELATED to a batch-file.
I have a BATCHFILE, in which i would like to add the command to LOAD a file in a specific program.
Idea:
On a CD, i have a file start.htm. I want this file not to be loaded in the users default browser, instead i want it to be loaded within a browser that i provided on that same cd (for example browser.exe).
This batch will be used within a program. Is there any expert that might help me out a BIT accomplishing this?
Thanks in advanceI would DEFINE start.htm as startpage in your browser and burn it on the cd. Make a simple batch file who starts the browser called start.cmd
@echo off browser.exe
this solution is not really elegant. hope it helps uli
|