<PROGRAMFILES>\InstallShield Installation Information\{2EE6659C-B109-4487-AE46-62ED614AC797}\Setup.exe2EE6659C-B109-4487-AE46-62ED614AC797}是你的工程的GUID,在工程属性中能找到

解决方案 »

  1.   

    在OnFirstUIBefore()中添加://添加反安装子项
        svPath = PROGRAMFILES+"InstallShield Installation Information\\"+PRODUCT_GUID+"\\setup.exe";
        if (LongPathToQuote( svPath , TRUE ) < 0) then
          MessageBox("Call to LongPathToQuote failed.", SEVERE);
        endif;
        szItemName = "Uninstall your pro"; 
        if (AddFolderIcon(FOLDER_PROGRAMS ^ "you pro", szItemName, svPath, WINDIR,
                          "", 0, "", REPLACE) < 0) then
            return -1;
        endif;
      

  2.   

    还是没有卸载的菜单出现啊:(
    除了修改"Uninstall your pro"之类的信息之外,还需要修改哪些东西?谢谢
      

  3.   

    写代码是一个办法,好处是GUID不用每次都指定,我上面已经说的是比较简单的办法
    新建一个快捷方式
    它的Target里填入
    <PROGRAMFILES>\InstallShield Installation Information\{2EE6659C-B109-4487-AE46-62ED614AC797}\Setup.exe
      

  4.   

    还有
    在Install Conditons(Files Groups)选上一个肯定安装的Files Groups,否则如此找不到这个组里的文件,快捷方式还是不会建立的