我希望[InstallDelete]
部分调用自定义函数来检查是否安装了旧版本(在这种情况下,在安装新版本之前需要删除某些文件)。
从我的Inno安装脚本中提取。首先,如果安装了旧版本,则返回True的函数。
[Code]
function deleteExistingHhd: Boolean;
var Version: String;
begin
MsgBox('Checking for key:'+'Software\Microsoft\Windows\CurrentVersion\Uninstall\'+ExpandConstant('AppId')+'_is1', mbInformation, MB_OK);
if RegValueExists(HKEY_LOCAL_MACHINE,'Software\Microsoft\Windows\CurrentVersion\Uninstall\'+ExpandConstant('AppId')+'_is1', 'DisplayVersion') then
begin
RegQueryStringValue(HKEY_LOCAL_MACHINE,'Software\Microsoft\Windows\CurrentVersion\Uninstall\'+ExpandConstant('AppId')+'_is1', 'DisplayVersion', Version);
MsgBox('Existing version:'+Version+' New version:'+ExpandConstant('AppVersion'), mbInformation, MB_OK);
if (Version < '1.013') then
begin
Result := True;
end
else
begin
Result := False;
end
end
else
begin
Result := False;
end
end;
然后应该调用此函数的部分:
[InstallDelete]
Type: files; Name: {userappdata}\xxx\*.hhd; Check:deleteExistingHhd;
不幸的是,生成的设置似乎永远不会调用自定义函数(使用此设置安装我的程序时,我从未将MsgBox放在自定义函数中,并且文件不会被删除)。
当Inno Setup编译时,我的函数是否有可能出现一些未指出的错误?如果是这样,我在哪里可以找到它们?
非常感谢任何帮助/提示;谢谢!
答案 0 :(得分:2)
如果从未调用过MsgBox,则还有其他错误。
我创建了一个新项目,按原样粘贴你的行,然后弹出第一个msgbox。
也许只是开始一个新的,并继续添加旧设置脚本中的部分,直到您找到阻止该功能执行的内容。
您是否知道可以使用F7和/或断点F5单步执行代码? 这应该可以帮助您找到问题,它应该去:[InstallDelete] - &gt; [Dirs] - &gt; [文件]
@IZB是对的,ExpandConstant(&#39; AppId&#39;)将被解析为AppId而非实际ID。检查调试部分的输出我在下面添加了你的脚本。观看&#34;调试输出&#34;在逐步完成代码的同时,在Inno Seput编译器的底部。
AND,你还需要ExpandConstant :),否则你将得到领先的&#39; {&#39;一倍。它应该在[Setup]部分加倍以转义括号字符。预编译器也将使用#SetupSetting(&#34; AppId&#34;)传递转义前导括号。 ExpandConstant实际上不会在这里扩展任何常量,但会删除这个加倍的bractet。
这是完整工作文件的粘贴:
#define MyAppName "My Program"
#define MyAppVersion "1.5"
#define MyAppPublisher "My Company, Inc."
#define MyAppURL "http://www.example.com/"
#define MyAppExeName "MyProg.exe"
[Setup]
AppId={{CB77C990-DECF-4697-B377-8F76799CC6B7}
AppName={#MyAppName}
AppVersion={#MyAppVersion}
;AppVerName={#MyAppName} {#MyAppVersion}
AppPublisher={#MyAppPublisher}
AppPublisherURL={#MyAppURL}
AppSupportURL={#MyAppURL}
AppUpdatesURL={#MyAppURL}
DefaultDirName={pf}\{#MyAppName}
DefaultGroupName={#MyAppName}
OutputBaseFilename=setup
Compression=lzma
SolidCompression=yes
[Code]
function deleteExistingHhd: Boolean;
var Version: String;
begin
// Debugging
// {#SetupSetting("AppId")} is short from {#emit SetupSetting("AppId")}
Log('Note the double bracket: {#SetupSetting("AppId")}');
Log('Now it''s fine: ' + ExpandConstant('{# SetupSetting("AppId")}'));
Log(' This won''t expand: ' + ExpandConstant('AppId'));
if RegValueExists(HKEY_LOCAL_MACHINE,ExpandConstant('Software\Microsoft\Windows\CurrentVersion\Uninstall\{#SetupSetting("AppId")}_is1'), 'DisplayVersion') then
begin
RegQueryStringValue(HKEY_LOCAL_MACHINE,ExpandConstant('Software\Microsoft\Windows\CurrentVersion\Uninstall\{#SetupSetting("AppId")}_is1'), 'DisplayVersion', Version);
MsgBox('Existing version:' + Version + ' New version:{#SetupSetting("AppVersion")}', mbInformation, MB_OK);
if (Version < '1.013') then Result := True
else Result := False;
end
else Result := False;
end;
[InstallDelete]
Type: files; Name: {userappdata}\xxx\*.hhd; Check: deleteExistingHhd
答案 1 :(得分:0)
如果您想在安装新设备之前取消安装,可以使用以下代码:
#define AppName SetupSetting('AppName')
#define AppVersion SetupSetting('AppVersion')
#define AppId SetupSetting('AppId')
#if AppId == ""
#define AppId AppName
#endif
[Code]
procedure InitializeWizard;
var
Uninstall,Version: String;
ResultCode:Integer;
begin
MsgBox('Checking for key:'+'Software\Microsoft\Windows\CurrentVersion\Uninstall\'+ExpandConstant('{#AppId}')+'_is1', mbInformation, MB_OK);
if RegValueExists(HKEY_LOCAL_MACHINE,'Software\Microsoft\Windows\CurrentVersion\Uninstall\'+ExpandConstant('{#AppId}')+'_is1', 'DisplayVersion') then begin
RegQueryStringValue(HKEY_LOCAL_MACHINE,'Software\Microsoft\Windows\CurrentVersion\Uninstall\'+ExpandConstant('{#AppId}')+'_is1', 'DisplayVersion', Version);
MsgBox('Existing version:'+Version+' New version:'+ExpandConstant('{#AppVersion}'), mbInformation, MB_OK);
if (Version < ExpandConstant('{#AppVersion}')) then begin
RegQueryStringValue(HKEY_LOCAL_MACHINE,'Software\Microsoft\Windows\CurrentVersion\Uninstall\'+ExpandConstant('{#AppId}')+'_is1','UninstallString', Uninstall);
Exec(RemoveQuotes(Uninstall), ' /RECAll /SILENT' , '', SW_SHOW, ewWaitUntilTerminated, ResultCode);
end
end
end;
我想我会将代码保留在上面并为您解决问题,这可能会有所帮助:
#define AppName SetupSetting('AppName')
#define AppVersion SetupSetting('AppVersion')
#define AppId SetupSetting('AppId')
#if AppId == ""
#define AppId AppName
#endif
[InstallDelete]
Type: files; Name: {userappdata}\xxx\*.hhd; Check:deleteExistingHhd;
[Code]
function deleteExistingHhd: Boolean;
var Version: String;
begin
MsgBox('Checking for key:'+'Software\Microsoft\Windows\CurrentVersion\Uninstall\'+ExpandConstant('{#AppId}')+'_is1', mbInformation, MB_OK);
if RegValueExists(HKEY_LOCAL_MACHINE,'Software\Microsoft\Windows\CurrentVersion\Uninstall\'+ExpandConstant('{#AppId}')+'_is1', 'DisplayVersion') then begin
RegQueryStringValue(HKEY_LOCAL_MACHINE,'Software\Microsoft\Windows\CurrentVersion\Uninstall\'+ExpandConstant('{#AppId}')+'_is1', 'DisplayVersion', Version);
MsgBox('Existing version:'+Version+' New version:'+ExpandConstant('{#AppVersion}'), mbInformation, MB_OK);
if (Version < '1.013') then begin
Result := True;
end else Result := False;
end else Result := False;
end;