Click here to Skip to main content
15,897,371 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
C#
uninstall.StartInfo.FileName = 
          uninstallstring.Substring(0, uninstallstring.LastIndexOf("/") - 1);
uninstall.StartInfo.Arguments = 
          uninstallstring.Substring(uninstallstring.LastIndexOf("/"), 
          uninstallstring.Length - uninstallstring.LastIndexOf("/"));
uninstall.Start();


This is the code to uninstall my system software.....
Can u please help to uninstall the remote system software using registry......

thanks in advance....
Posted
Updated 23-Mar-10 2:51am
v2

1 solution

Asp.net produces HTML that is displayed in a browser on the remote ( client ) computer.

You cannot access the client's registry using HTML, so your approach will not work.

You will have to get the user to run an executable on their computer.

Nick
 
Share this answer
 

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