Guest User

Untitled

a guest
Feb 11th, 2019
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. set hashes=d:\basil\mirandang\hashes.txt
  2. set checksum=d:\basil\mirandang\checksum.exe
  3. cd d:\basil\mirandang\
  4. %checksum% Miranda64.exe > %hashes%
  5. %checksum% Zlib.dll >> %hashes%
  6. call :checksum plugins
  7. call :checksum Icons
  8. call :checksum Icons\Fp_ClientIcons
  9. goto :eof
  10. rem getting checksum for dlls
  11. :checksum
  12. cd %1
  13. for /F "tokens=1,2 delims= " %%a in ('%checksum% *.dll') do echo %1\%%a %%b >> %hashes%
  14. cd ..
  15. goto :eof
Add Comment
Please, Sign In to add comment