Thread: MD5 Checksum
View Single Post
  #3  
Old 22-12-2018, 11:36
Punisher Punisher is offline
Banned
 
Join Date: Nov 2018
Location: India
Posts: 54
Thanks: 37
Thanked 0 Times in 0 Posts
Punisher is on a distinguished road
Quote:
Originally Posted by doofoo24 View Post
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
Thanks for Reply doofoo24 👍
This will check tje files before it install right?
I want to check files after install.
I will check this tomorrow, and tell you if i have a problem with it. Thanks again.