Go Back   FileForums > Game Backup > PC Games > PC Games - CD/DVD Conversions > Conversion Tutorials
Register FAQ Community Calendar Today's Posts Search

Closed Thread
 
Thread Tools Search this Thread Display Modes
  #16  
Old 20-12-2018, 15:29
pakrat2k2's Avatar
pakrat2k2 pakrat2k2 is offline
Moderator
 
Join Date: Apr 2005
Location: Canada
Posts: 7,209
Thanks: 3,040
Thanked 9,043 Times in 3,086 Posts
pakrat2k2 is on a distinguished road
learn to read the replies & look in appropriate links/topics.. all information is provided
people will just stop trying to help if you just keep asking the same thing over & over in multiple topics.
Sponsored Links
  #17  
Old 20-12-2018, 20:27
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
I stop looking AFR Method.
can you tell me about CLS-PrecompMT multi tasking.
What this method compress.
Please explain thanks...
  #18  
Old 22-12-2018, 03:31
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
Smile

Quote:
Originally Posted by KaktoR View Post
You can use QuickSFV then and use parameter SFVorMD5File

Example:
Code:
Exec(ExpandConstant('{app}\QuickSFV.exe'),'File.md5','',SW_SHOW, ewWaitUntilTerminated, ErrorCode);

THANKS TO KaktoR...
i have crate sfv and md5 file today,
i like to check md5 after game installed

how do i do that ? what is the easy way to check MD5 after installed?
it needs to be automatically check after installed... help.. please
  #19  
Old 22-12-2018, 04:06
KaktoR's Avatar
KaktoR KaktoR is offline
Lame User
 
Join Date: Jan 2012
Location: From outer space
Posts: 4,689
Thanks: 1,106
Thanked 7,337 Times in 2,839 Posts
KaktoR is on a distinguished road
Include quicksfv.exe and your md5/sfv file in setup.exe [Files] section and let this two files unpack in your game folder {app}.

Code:
[Files]
Source: File.md5; DestDir: {app};
Source: QuickSFV.exe; DestDir: {app};
After install is finished use this in [Code]
Code:
procedure CurStepChanged(CurStep: TSetupStep);
var
  ErrorCode: Integer;
begin
if (CurStep = ssDone) then begin
      Exec(ExpandConstant('{app}\QuickSFV.exe'),'{#CRCFileName}','',SW_SHOW, ewWaitUntilTerminated, ErrorCode);
      DeleteFile(ExpandConstant('{app}\QuickSFV.exe'));
      DeleteFile(ExpandConstant('{app}\QuickSFV.ini'));
    end;
  end;
end;
__________________
Haters gonna hate

Last edited by KaktoR; 22-12-2018 at 04:23.
The Following 2 Users Say Thank You to KaktoR For This Useful Post:
BLACKFIRE69 (12-09-2019), Punisher (22-12-2018)
  #20  
Old 22-12-2018, 09:52
doofoo24 doofoo24 is offline
Registered User
 
Join Date: Nov 2016
Location: canada
Posts: 408
Thanks: 138
Thanked 474 Times in 227 Posts
doofoo24 is on a distinguished road
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
The Following User Says Thank You to doofoo24 For This Useful Post:
Punisher (22-12-2018)
  #21  
Old 22-12-2018, 11:32
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
Smile

Quote:
Originally Posted by KaktoR View Post
Include quicksfv.exe and your md5/sfv file in setup.exe [Files] section and let this two files unpack in your game folder {app}.

Code:
[Files]
Source: File.md5; DestDir: {app};
Source: QuickSFV.exe; DestDir: {app};
After install is finished use this in [Code]
Code:
procedure CurStepChanged(CurStep: TSetupStep);
var
  ErrorCode: Integer;
begin
if (CurStep = ssDone) then begin
      Exec(ExpandConstant('{app}\QuickSFV.exe'),'{#CRCFileName}','',SW_SHOW, ewWaitUntilTerminated, ErrorCode);
      DeleteFile(ExpandConstant('{app}\QuickSFV.exe'));
      DeleteFile(ExpandConstant('{app}\QuickSFV.ini'));
    end;
  end;
end;
Thanks a lot KaktoR.. I will try that and I'll tell you if i had issue.. Thanks again your the best..

also I have open request thread for beginners,
For understanding Compression methods..
If you can make it, please do it.
  #22  
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.
  #23  
Old 22-12-2018, 12:29
doofoo24 doofoo24 is offline
Registered User
 
Join Date: Nov 2016
Location: canada
Posts: 408
Thanks: 138
Thanked 474 Times in 227 Posts
doofoo24 is on a distinguished road
Quote:
Originally Posted by Punisher View Post
also I have open request thread for beginners,
For understanding Compression methods..
If you can make it, please do it.
https://www.fileforums.com/showthread.php?t=97530
The Following User Says Thank You to doofoo24 For This Useful Post:
Punisher (22-12-2018)
  #24  
Old 22-12-2018, 19:29
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
Thanks... For helping 👍✔️
Closed Thread


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
I need commandline sha1 md5 checksum program ipman_98 Conversion Tutorials 10 10-03-2021 07:56
I want to add a Checksum of files Amsal Conversion Tutorials 11 08-04-2017 08:18
Doom3 wrong game DLL API version Problem after 1.31 from 1.3 install sledge22 General Gaming 0 03-03-2009 19:07
CMOS Checksum Error themonkey39 Hardware 11 23-09-2008 06:30
Heroes of Might and Magic V Checksum Error 0.2.0 tyrs4u General Gaming 1 28-06-2006 17:08



All times are GMT -7. The time now is 13:55.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2026, vBulletin Solutions Inc.
FileForums @ https://fileforums.com