|
you can put QuickSFV.exe and QuickSFV.ini in tmp
and add
ExtractTemporaryFile('checksum.exe');
ExtractTemporaryFile('checksum.ini'),
if you cancel during the installation with quicksfv enable you may get error file not found better to add
if (CurStep=ssPostInstall) and ISDoneError then begin
DeleteFile(ExpandConstant('{tmp}\checksum.exe'));
DelTree(ExpandConstant('{app}'), True, True, True);
work on isdone script
Filename: {tmp}\checksum.exe; Parameters: checksum.sfv; WorkingDir: {app}; Flags: postinstall skipifdoesntexist
|