Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. General Programming
  3. C#
  4. execute .exe file

execute .exe file

Scheduled Pinned Locked Moved C#
csharpquestion
3 Posts 3 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • S Offline
    S Offline
    sadaf82
    wrote on last edited by
    #1

    how execute exe files in C#.net?

    A J 2 Replies Last reply
    0
    • S sadaf82

      how execute exe files in C#.net?

      A Offline
      A Offline
      Abhijit Jana
      wrote on last edited by
      #2

      Use using System.Diagnostics NameSpace. Then use Process Class to Execute an Exe. eg:

      Process.Start("IExplore.exe")

      Abhijit Jana | Codeproject MVP Web Site : abhijitjana.net Don't forget to click "Good Answer" on the post(s) that helped you.

      1 Reply Last reply
      0
      • S sadaf82

        how execute exe files in C#.net?

        J Offline
        J Offline
        Johan Martensson
        wrote on last edited by
        #3

        If you need to pass some arguments to the exe file, here is an example

        Process p = new Process();
        ProcessStartInfo ps = new ProcessStartInfo();
        p.StartInfo = ps;

        ps.FileName = "file.exe";
        ps.Arguments = "Some commandline arguments";

        p.Start();

        http://johanmartensson.se - Home of MPEG4Watcher http://www.tinywebradio.com - Home of TinyWebRadio

        1 Reply Last reply
        0
        Reply
        • Reply as topic
        Log in to reply
        • Oldest to Newest
        • Newest to Oldest
        • Most Votes


        • Login

        • Don't have an account? Register

        • Login or register to search.
        • First post
          Last post
        0
        • Categories
        • Recent
        • Tags
        • Popular
        • World
        • Users
        • Groups