how to run exe at instllation time
C#
2
Posts
2
Posters
0
Views
1
Watching
-
I want to add an exe run at when installation is in process. I want to know how to add an exe path to run at vs deployment time. i hope you will what i need to do. :)
You can write your own class which will be derived from the Installer class.
Naveed khan nido wrote:
I want to know how to add an exe path to run at vs deployment time.
You will get savedState parameter( It is of IDictionary type) in the Install method. You can add the exe path to this savedState.
Naveed khan nido wrote:
I want to add an exe run at when installation is in process.
simply Process.Invoke with the path saved into savedState will do the job for you. You will have to specify this class (rather your installer dll) in the custom actions of your deployment project. Thanks.