tjbradford
Technical User
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 ?
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
@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%