Sample code for 30+ languages & platforms
AutoIt

Compute CRC32 of a File

Calculates the CRC32 of a file's contents and returns the 32-bit CRC as a hex string.

Chilkat AutoIt Downloads

AutoIt
$oZipCrc = ObjCreate("Chilkat.ZipCrc")
; Use a relative for absolute path to the file..
Local $iCrc = $oZipCrc.FileCrc("qa_data/hamlet.xml")
Local $sHexStr = $oZipCrc.ToHex($iCrc)
ConsoleWrite($sHexStr & @CRLF)