检查是否已安装ASP.NET MVC 3,以及是否未通过Inno Setup从Internet安装它

时间:2013-10-07 12:09:43

标签: asp.net-mvc-3 installer inno-setup

我想检查注册表是否存在Asp.net mvc 3.如果它不包含在系统中,MVC 3本身必须自动从Internet安装。我有一个下面的代码,但我有一行编译错误" AddProduct(bla bla bla)"。它表示"未知标识符' AddProduct'"。无论如何,为什么呢?

 const
AspNetMVC3_url = 'http://download.microsoft.com/download/F/3/1/F31EF055-3C46-4E35-   AB7B-3261A303A3B6/AspNetMVC3ToolsUpdateSetup.exe';
 procedure AspNetMVC3();
 var
version: cardinal;
 begin
if not RegKeyExists(HKLM, 'SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\  {37C939A9-427D-4F06-A14C-5C672EF51C6C}') then
 AddProduct('AspNetMVC3ToolsUpdateSetup.exe','',CustomMessage('AspNetMVC3_title'),CustomMessage   ('AspNetMVC3_size'),AspNetMVC3_url,false,false);
end;

0 个答案:

没有答案