Just made this in my spare time. It returns the EOF data at the end of just about any executable. This is useful for compressing files, running files that need EOF data from memory and much more. func _getEOFData($file) $file = FileRead($file) $file = StringSplit($file, "") Return $file[$file[0]] EndFunc