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 8218069
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T12:39:45+00:00 2026-06-07T12:39:45+00:00

I have a 3rd party software package. Its folder contains the .exe file to

  • 0

I have a 3rd party software package. Its folder contains the .exe file to run and some other files required to run the application. When I open the application manually, it works fine, but when I try to open the same application through Process.Start(), I get the error “application has stopped working”.

The application needs the .NET 4.0 framework in order to execute, so I had to install it. The C# code I’m attempting to run it with is on .NET 3.5 and was created using Visual Studio 2008.

  • 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-06-07T12:39:47+00:00Added an answer on June 7, 2026 at 12:39 pm

    You could try the following:

        var path = @"C:\Temp\test.exe";
        FileInfo fi = new FileInfo(path);
    
        ProcessStartInfo info = new ProcessStartInfo(path);
        info.WorkingDirectory = fi.DirectoryName;
    
        Process process = new Process();
        process.StartInfo = info;
    
        process.Start();
    

    If this does not work, try

    Directory.SetCurrentDirectory(fi.DirectoryName);
    

    directly before the process.Start();

    Do not forget to reset the Current directory afterwards!
    Save the CurrentDirectory before with

    var currentDirectory = Directory.GetCurrentDirectory();
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have some output from 3rd party software: Sample XML from the software: <testsuite
Hi I have a reporting application written against some 3rd party software. Unfortunately it
I have some limitations in using generated stubs with the 3rd party software. SO,
I have some 3rd party libraries and includes (I have copied them to the
I have a 3rd party ActiveX control I want to render within other presentation
I have a table used by one piece of 3rd party software (say user_fields)
In my app I am having to interface with some 3rd party software I
I purchased a very well-known 3rd-party php-based forum software. Uploaded to my server, run
We have a 3rd party piece of software that uses a bunch of internal
I have a table that will receive messages from a 3rd party software, I

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.