Running .Net 1.1 application on windows vista
-
I have a windows application written in .net 1.1. I am unable to run the application on windows vista. Where ever i have used the System.Diagnostics.Process namespace it throws an exception. Also i have to start a windows service on vista from this application. It says admin access is needed to start the service. Security on vista has been changed a lot. Do i have to enable any properties on vista to make this application work? Any solution would be of great help. Thanks.
-
I have a windows application written in .net 1.1. I am unable to run the application on windows vista. Where ever i have used the System.Diagnostics.Process namespace it throws an exception. Also i have to start a windows service on vista from this application. It says admin access is needed to start the service. Security on vista has been changed a lot. Do i have to enable any properties on vista to make this application work? Any solution would be of great help. Thanks.
pranu_13 wrote:
It says admin access is needed to start the service.
The secret is in the error message ... It says admin access is needed to start the server ... so maybe you need admin access to start it :P Right click the application and "Start as administrator..." or if you want to make it permanent, right click the application, "Properties", "Compatibility" and check the "Run as administrator" check box.
-
pranu_13 wrote:
It says admin access is needed to start the service.
The secret is in the error message ... It says admin access is needed to start the server ... so maybe you need admin access to start it :P Right click the application and "Start as administrator..." or if you want to make it permanent, right click the application, "Properties", "Compatibility" and check the "Run as administrator" check box.