View Single Post
  #11  
Old 04-09-2016, 10:06
kenzo34's Avatar
kenzo34 kenzo34 is offline
Registered User
 
Join Date: Oct 2014
Location: france
Posts: 92
Thanks: 425
Thanked 59 Times in 37 Posts
kenzo34 is on a distinguished road
look for the following lines in your script and change what you want:

if not MaskedExt(100,ExpandConstant('{src}\Data1.bin'),Ex pandConstant('{app}'),'Yourpassword') then break;
// if not MaskedExt(50,ExpandConstant('{src}\Data1.bin'),Exp andConstant('{app}'),'YourPassword') then break;
// if not MaskedExt(25,ExpandConstant('{src}\Data2.bin'),Exp andConstant('{app}'),'YourPassword') then break;
// if not MaskedExt(25,ExpandConstant('{src}\Data3.bin'),Exp andConstant('{app}'),'YourPassword') then break;


for example if you want 2 bin file the script will be:

if not MaskedExt(50,ExpandConstant('{src}\Data1.bin'),Exp andConstant('{app}'),'Yourpassword') then break;
if not MaskedExt(50,ExpandConstant('{src}\Data2.bin'),Exp andConstant('{app}'),'YourPassword') then break;
// if not MaskedExt(25,ExpandConstant('{src}\Data2.bin'),Exp andConstant('{app}'),'YourPassword') then break;
// if not MaskedExt(25,ExpandConstant('{src}\Data3.bin'),Exp andConstant('{app}'),'YourPassword') then break;
Reply With Quote
The Following User Says Thank You to kenzo34 For This Useful Post:
SAM2712 (04-09-2016)