Advertisement
tolikpunkoff

Section code for get MD5-checksums files code examples

Mar 15th, 2023
1,896
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Section "List"
  2.    
  3.     GetTempFileName $R0
  4.     FileOpen $R1 $R0 w
  5.    
  6.     DetailPrint "Starting search files and get MD5..."
  7.    
  8.     ${Locate} "$INSTDIR" "/L=F /M=*.*" "GetMD5"
  9.    
  10.     FileClose $R1
  11.    
  12.     IfErrors 0 +2
  13.     MessageBox MB_OK "Error" IDOK +2
  14.     Exec '"notepad.exe" "$R0"'
  15.    
  16. SectionEnd
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement