Click here to Skip to main content
15,886,004 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Hi,

I am planning to start new process from my running application.
In the normal environment I am using Process start Info

Setting arguments and file name to be executed

Process.Start(ProcessStartInfo)


But in the No Touch deployment method it is giving security error.


Also I made unsuccessful attempt with ExecuteAssembly method as mentioned below

AppDomain.CurrentDomain.ExecureAssembly("c://Application/myAppli.exe",AppDomain.CurrentDomain.Evidence,argument)


Is there any alternatives to start new process from running application in NoTouch deployment environment.


Regards,

Vijay
Posted
Comments
pdoxtader 24-Oct-12 19:57pm    
Vijay, you really need to give us more information. What exactly is the error you're getting? What do you mean by "No touch deployment method"?

Not knowing any more then this, I would say that the user you're using to install this software doesn't have the rights to do what you want. You may need to be logged in as a user with admin rights, or kick the installer off using an admin user.
Vijay hit 25-Oct-12 0:50am    
No Touch deployment method is a type of .Net architecture where we don't need to install the application to local desktop. We can run the application located in server through internet explorer.
Assembly files will be loaded to the client computer and they are executed to run the application.

For more information please refer below link

http://msdn.microsoft.com/en-us/library/aa289511(v=vs.71).aspx

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900