Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 308119
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T07:37:16+00:00 2026-05-12T07:37:16+00:00

I have to execute an .exe which is available on some drive. How can

  • 0

I have to execute an .exe which is available on some drive. How can I do this using C++?

I am doing it like this:

#include <stdio.h>
#include <conio.h>
#include <windows.h>
    
void main()
{
    STARTUPINFO si;

    PROCESS_INFORMATION pi;

    ZeroMemory( &si, sizeof(si) );
    si.cb = sizeof(si);
    ZeroMemory( &pi, sizeof(pi) );

    if(!CreateProcess(L"c:\\DOTNET.exe",NULL,NULL, NULL,FALSE, 0,NULL,NULL,&si,&pi ) ) 
    {
        printf( "CreateProcess failed (%d).\n", GetLastError() );
    }
    else
    {
        printf("Prcess Creation Success");
    }

    WaitForSingleObject( pi.hProcess, INFINITE );
    CloseHandle( pi.hProcess );
    CloseHandle( pi.hThread ); 

    getch();
}

But every time, it is showing this error:

process creation failed with error code 2 (i.e can not find the path specified)

But I place the DOTNET.exe at c:\DOTNET.exe only.

What is wrong in this code?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-12T07:37:16+00:00Added an answer on May 12, 2026 at 7:37 am

    I’ve just tested your code and it’s working here with :

    if(!CreateProcess(L"C:\\Program Files\\Mozilla Firefox\\firefox.exe",NULL,NULL, NULL,FALSE, 0,NULL,NULL,&si,&pi ) ) 
    

    A C++/Win32 solution for your C/Win32 code 🙂

    void ExecuteAndWait (wstring toto)
    {
        STARTUPINFO si = { sizeof(si) };
        PROCESS_INFORMATION  pi;
        vector<TCHAR> V( toto.length() + 1);
        for (int i=0;i< (int) toto.length();i++)
        V[i] = toto[i];
        CreateProcess(NULL, &V[0],0, 0, FALSE, 0, 0, 0, &si, &pi);
        WaitForSingleObject(pi.hProcess, INFINITE);
        CloseHandle(pi.hProcess);
        CloseHandle(pi.hThread);
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have this chess engine Rybka.exe, that i have to execute in java Here
This is probably easy as well. But I have this listview which contains exe
i have a web application in which i want to execute an .exe file.
I would like to have a windows executable (.exe-file) which starts a given command.
We have a .exe which we need to execute at the time an order
I have a .exe program (console app) written in .net. I need to execute
I have a report to which I have execute-only access - I don't have
I have an Execute SQL task (SQL 2008) where I'm using two SSIS variables
I have to execute some code in the context of the main thread. I
I have a shell script in which I have to execute two queries (on

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.