Re: Execution in background
I think a solution could be to create a vbs script like this:
Code:
DIM oWsh, commande
Set oWsh = WScript.CreateObject("WScript.Shell")
command = "c:\fichier.bat"
oWsh.Run command, 0
The principle is that vb script allows you to execute a command without using the display option 0 (at the very end of the script).
you can use the startup script or logon scripts to start your script at startup. You can also add any betement script in your list of startup programs.
Re: Execution in background
Thank you very,
it is nice, but what is the concept of "background" in windows, and if so what are the commands that allow us to manage the process?
thank you for being very patient with my questions!
Re: Execution in background
Well what do you mean by "background"? For me in the background means that run but nothing appears. This is not a special mode of operation, it's just a history display.
the script given above allows you to launch a .bat or any other command windows without this appears to execution.