I want to run a bat file in background. I searched in google and I found some examples using hstart and cmdow. But Isn't anyway to do this with windows commands? I really feal good when I don't add extra programs to my project ! thanx in advance
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
I'm using window scheduler. I found a way : Save this one line of text as file invisible.vbs:
To run any program or batch file invisibly, use it like this:
thanx |
|||||
|
|
|
It really depends on the programming language and platform you are using. In Windows, using the C# language on the .NET platform, it is:
|
|||
|
|
|
You can try to run the batch file as a windows service. You will perhaps need to have admin previleges on your host to do this, but if you want to go for it, its easy to add/configure using sc command. |
|||
|
|