在打包項(xiàng)目中添加文件msiexec.exe(一般在c:\windows\system32(系統(tǒng)目錄中)找到),。
在文件系統(tǒng)視圖中選擇應(yīng)用程序文件,在msiexec.exe上單擊右鍵選擇“創(chuàng)建快捷方式”,,重命名快捷方式為“uninstall”.
更改此快捷方式Argmuments為“/x {產(chǎn)品ID}”,,產(chǎn)品ID的值為打包項(xiàng)目的ProductCode屬性值。
注:ProudctCode(選擇解決方案資源管理根目錄如Setup1,再查看屬性標(biāo)簽,,不是右鍵屬性)
或者是在應(yīng)該程序中加入下面代碼:
string sysroot = System.Environment.SystemDirectory;
System.Diagnostics.Process.Start(sysroot + "\\msiexec.exe", "/x {850FED90-20D0-4EBA-BEDB-3D9DBA25F6EC} /qr");