本文介绍了如何使用asp.net中的注册表在远程系统中卸载软件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

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....

推荐答案


这篇关于如何使用asp.net中的注册表在远程系统中卸载软件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-29 08:10