我为我的应用创建了一个VS设置项目。它将应用程序安装到用户定义的位置,并在开始菜单中创建多个快捷方式。它还在“控制面板”/“添加或删除程序”中创建一个可用于卸载应用程序的条目。
我想知道是否有办法创建可以卸载我的应用程序的开始菜单条目(由安装程序创建的其他条目旁边)。
到目前为止,我找到了一个解决方案,但使用起来很痛苦:我创建了{app}文件中部署的uninstall.bat
文件,我正在为此文件添加快捷方式。 *.bat
的内容如下所示:
@echo off
msiexec /x {0B02B2AB-12C6-4548-BF90-F754372B0D36}
我不喜欢这个解决方案是每次我更新我的应用程序的产品代码(每当我按照VS建议更新我的应用程序版本时,我都这样做)我必须在构建设置之前手动编辑此文件项目并输入正确的新产品代码。
有谁知道向应用添加卸载程序的更简单方法?
答案 0 :(得分:1)
您可以编辑.bat文件以接受参数。
@echo off
msiexec /x %1
在定义快捷方式的设置项目中,添加[ProductCode]属性作为参数。
答案 1 :(得分:1)
我遇到了这个问题。
我做的是:
这是作为自定义操作运行的脚本。它重写uninstall.bat文件,然后删除自己。
// CreateUninstaller.js
//
// Runs on installation, to create an uninstaller
// .cmd file in the application folder. This makes it
// easy to uninstall.
//
// Mon, 31 Aug 2009 05:13
//
var fso, ts;
var ForWriting= 2;
fso = new ActiveXObject("Scripting.FileSystemObject");
var parameters = Session.Property("CustomActionData").split("|");
var targetDir = parameters[0];
var productCode = parameters[1];
ts = fso.OpenTextFile(targetDir + "uninstall.cmd", ForWriting, true);
ts.WriteLine("@echo off");
ts.WriteLine("goto START");
ts.WriteLine("=======================================================");
ts.WriteLine(" Uninstall.cmd");
ts.WriteBlankLines(1);
ts.WriteLine(" This is part of MyProduct.");
ts.WriteBlankLines(1);
ts.WriteLine(" Run this to uninstall MyProduct");
ts.WriteBlankLines(1);
ts.WriteLine("=======================================================");
ts.WriteBlankLines(1);
ts.WriteLine(":START");
ts.WriteLine("@REM The uuid is the 'ProductCode' in the Visual Studio setup project");
ts.WriteLine("%windir%\\system32\\msiexec /x " + productCode);
ts.WriteBlankLines(1);
ts.Close();
// all done - try to delete myself.
try
{
var scriptName = targetDir + "createUninstaller.js";
if (fso.FileExists(scriptName))
{
fso.DeleteFile(scriptName);
}
}
catch (e2)
{
}
我想我可以用WiX做到这一点,但我不想学习它。
答案 2 :(得分:1)
另一个选择是调用msiexec从应用程序本身卸载,如果给出了某个命令行参数 - 请参阅此处显示的示例以获取更多详细信息:http://endofstream.com/creating-uninstaller-in-a-visual-studio-project/
通过这种方式,卸载时不会强制您看到命令提示符:)