Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

show mcafee dat version

Status
Not open for further replies.

tjbradford

Technical User
Dec 14, 2007
229
0
0
GB

Hi I'm looking for a way to show the dat version in use on a PC from the command line or from inside regedit or just from a drive share , any idea's ?
 
Hi tjbradford

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.

Thanks

McAfeeGeek
 
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%
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top