Hello everyone. I have one question, ¿is there any form to execute a program from USB disk without window, only introducing the USB in the computer and then, the program execute, doing his function, and end without any window shown? or if you know any program to do that, I will very gratefull if you could tell me that program^^
Thanks for your time!
How to execute a program from USB disk without window.
create an autorun inf file with the content:
[autorun]
open=path/myprogram.exe
and implement myprogram without opening any window. In visual studio/c++ you can do that with a windows project, in c# also a windows project but remove Form.cs and the form creation from main.cs. This latter part is really language and compiler specific.
[autorun]
open=path/myprogram.exe
and implement myprogram without opening any window. In visual studio/c++ you can do that with a windows project, in c# also a windows project but remove Form.cs and the form creation from main.cs. This latter part is really language and compiler specific.
-
- Posts: 273
- Joined: Thu Apr 10, 2008 9:47 pm