In registry, go to: HKLM > Software > McAfee > AVEngine and you should be able to see the DAT version, DAT Date and many other attributes in Hexadecimal.
If its not already, all you then need to do is convert the Hexadecimal to Decimal.
I know I'm stepping in a little late in the game, but... You could try something like this, based upon the logs:
Code:
@echo off
for /f "tokens=1 delims=*" %%a in ('type "C:\Documents and Settings\All Users\Application Data\McAfee\Common Framework\DB\PrdMgr_%COMPUTERNAME%.log"^|find /i "VIRUSCAN8700|General|szDATVersion"') do set DATVer=%%a
set DATVer=%DATVer:~-9%
echo DAT Version is: %DATVer%
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.