Endpoint Protection

 View Only
  • 1.  Need a DOS command to find update date of Symantec Antivirus

    Posted Jul 28, 2013 02:45 AM

    Hello to all,

    We have Symantec endpoint manager in our organisation having approx. 1500 end users on symantec managed clients.

    I have been making a script in C that will do alots of jobs for displaying the info about system. In view of that I need to find out the last updation date of Symantec anti virus on client machine.

    this script will run on every client computer. It will use DOS command to find out the latest updation date of Symantec anti virus.

    So,is there any DOS command to display the updation date of :-

    1.  Antivirus and Spyware protection

    2.  Proactive threat

    3.  Network threat

    Thanks...



  • 2.  RE: Need a DOS command to find update date of Symantec Antivirus



  • 3.  RE: Need a DOS command to find update date of Symantec Antivirus

    Posted Jul 28, 2013 08:32 AM

    What version of SEP are you on? 11.x or 12.1?

    This article from Vikram Kumar should be of help to you:

    http://www.symantec.com/connect/articles/symantec-endpoint-protection-few-registry-tweaks



  • 4.  RE: Need a DOS command to find update date of Symantec Antivirus

    Posted Jul 28, 2013 12:49 PM

    Thnks alot pete...

    Well, off the records!  Can you provide any similar hint regarding Windows update??



  • 5.  RE: Need a DOS command to find update date of Symantec Antivirus

    Posted Jul 29, 2013 06:24 AM

    I am using DOS command "reg export [registry_path] output.txt" to export all the fields in a particular registry. It is able to export the values from 'Uninstall' regarding finding the installed softwares. for exmaple:

    c:\>reg export HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall softwares1.txt

    Since there are no spaces in this registry path, it is successful.

    But when I try to query and export Symantec registry it doesn't allow. saying 'too many cammand-line parameters'. command as follows:

    c:\>reg export HKEY_LOCAL_MACHINE\SOFTWARE\Symantec\Symantec Endpoint Protection\AV symantec1.txt

    It is probably due to spaces between 'Symantec Endpoint Protection'. Any ideas to fix it????



  • 6.  RE: Need a DOS command to find update date of Symantec Antivirus

    Posted Jul 29, 2013 06:44 AM

    it should be 

    c:\>reg export "HKEY_LOCAL_MACHINE\SOFTWARE\Symantec\Symantec Endpoint Protection\AV" symantec1.txt

    double quotes to show that you are passing that as a single cmd