View Single Post
  #2  
Old 26-01-2016, 09:37
hasandgn34 hasandgn34 is offline
Registered User
 
Join Date: Apr 2013
Location: Turkey
Posts: 50
Thanks: 19
Thanked 35 Times in 21 Posts
hasandgn34 is on a distinguished road
Quote:
Originally Posted by Amsal View Post
Hello Everyone, I need a help. I want to add checksum utility in my script, so that when my files are installed then I can sure my members that it is installed with exact hashs.

Thanks in Advance
you can use "RapidCRC" hash controller after installation.
you need to use it "RapidCRC.exe" and "rcrcshex.dll"

and inno setup Script has to be like this;


[Run]
Filename: "{app}\RapidCRC.exe"; Parameters: "checksums.md5"; WorkingDir: "{app}"; Flags: nowait postinstall

[Files]
Source: "C:\Users\your name\Desktop\RapidCRC\RapidCRC.exe"; DestDir: "{app}"; Flags: ignoreversion
Source: "C:\Users\your name\Desktop\RapidCRC\rcrcshex.dll"; DestDir: "{app}"; Flags: ignoreversion
Source: "C:\Users\your name\Desktop\RapidCRC\checksums.md5"; DestDir: "{app}"; Flags: ignoreversion
Reply With Quote
The Following User Says Thank You to hasandgn34 For This Useful Post:
Amsal (26-01-2016)