Thread: Run at startup
View Single Post
Old Apr 29th, 2005, 11:24 AM   #11
Infinite Recursion
Programming Guru
 
Infinite Recursion's Avatar
 
Join Date: Jul 2004
Location: United States
Posts: 3,473
Rep Power: 8 Infinite Recursion is on a distinguished road
Send a message via MSN to Infinite Recursion Send a message via Yahoo to Infinite Recursion
try this:

#include <iostream>

using namespace std;

int main (void)
{
    string x = "CMD /C yourCommandHere";
    system(x.c_str());
    return 0;
}
__________________
http://jasonpowers.net

"There are a thousand hacking at the branches of evil to one who is striking at the root."
Infinite Recursion is offline   Reply With Quote