How can i install exe file using programmatically ?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • kartic03
    New Member
    • Dec 2006
    • 6

    How can i install exe file using programmatically ?

    I have to create a application that check the exe file is existing in system if it si not existing then i have to install it automatically withour user interaction.
    can any one help me out.

    Using c#

    Thanks in advance
  • jitendradotnet
    New Member
    • May 2007
    • 6

    #2
    Originally posted by kartic03
    I have to create a application that check the exe file is existing in system if it si not existing then i have to install it automatically withour user interaction.
    can any one help me out.

    Using c#

    Thanks in advance

    Suppose path is a variable that contain the exe filename with full physical path.

    System.Diagnost ics.Process.Sta rt(path);

    I think it is more then enough to execute exe file.

    Happy programming :)

    Comment

    Working...