Using only standard C ++, if iexplore is in the way, then
#include <stdlib.h> ... string foo ("iexplore.exe http://example.com"); system(foo.c_str());
If this is not the way, you need to work out the way somehow and pass it all on to the system call.
string foo ("path\\to\\iexplore.exe http://example.com"); system(foo.c_str());
source share