1. Get the address of the function, use a FindPattern method.
2. Find out it's parameters.
3. If it's a class member function ( which it is for Execute Console Command ), grab the class pointer, since you will need it for the call as a parameter.
4. Allocate memory in the target process.
5. Copy the parameters in the target process into the allocated memory space.
6. Call CreateRemoteThread on the function address and the parameters you've copied.
7. Clean up.
8. Done.