PDA

View Full Version : Need a Batch file to Clear Norton Logs



100%
10-27-2004, 01:46 PM
Norton Security keeps logs of all surfing activities even if you clean your web cache history.
i have a feeling this info gets sent to norton when you update.
It is an annoying process to clean them thru norton (even if there is a feature saying "disable logging" (which you have to turn on every time you reboot)
I manually clik the update.
so....

the logs are kept here (theyre all ..log)

C:\Documents and Settings\All Users\Application Data\Symantec\Norton Internet Security\Log

i cant seem to get the batch file right so it deletes them


del C:\docume~1\All Us~1\Applic~1\Symant~1\Norton~1\Log\*.*
???

OR?


@echo on
c:
cd \
cd docume~1\All Us~1\Applic~1\
rd /s/q Symant~1\Norton~1\Log

???

both these dont work....

Also since the norton services are running you cant delete them unless you turn off the processes so i think a batch file looking like this would work (after the initial delete .logs batch is worked out)
_________________________


NET STOP "Norton AntiVirus Auto Protect Service"

NET STOP "Symantec Event Manager"

NET STOP "Norton Internet Security Accounts Manager"

>>>>batch section which deletes the .logs in:
C:\Documents and Settings\All Users\Application Data\Symantec\Norton Internet Security\Log<<<<

NET START "Norton AntiVirus Auto Protect Service"

NET START "Symantec Event Manager"

NET START "Norton Internet Security Accounts Manager"
__________________________________
does that look feasable?
What would be great is that after running the batch it then automatically does the update......

If someone knows how to write the delete logs batch correctly it would be great.
Or maybe there is a simpler way
any advice?

thanks

Vargas
10-27-2004, 03:07 PM
well i can't format it in the reply box so see attatched
BTW if you try that command from the command line instead of from a bat file you need to change the %%a to %a

100%
10-27-2004, 03:21 PM
Thankyou Vargas - that definetly looks like its supposed to be written

I love the %%a workaround - will definetly be using that in my other batchs

the simplest are always the best

Sorry i canot test it right now as im on someone elses machine, will check later - uif there is an error ill reply

thankyou;)

100%
10-28-2004, 12:57 PM
Uh Oh - i just implemented your batch file and it isnt working...........
i put in both just to see what happens - after killing the norton services -
it doesnt delete them
yet
i can still right clik delete each .log file manually.....
this is what the batch looks like
------------------------------------
NET STOP "Norton AntiVirus Auto Protect Service"

NET STOP "Symantec Event Manager"

NET STOP "Norton Internet Security Accounts Manager"

for %%a in (C:\docume~1\Alluse~1\Applic~1\Symant~1\Norton~1\Log\*.*) do del %%a

del C:\docume~1\Alluse~1\Applic~1\Symant~1\Norton~1\Log\*.*

NET START "Norton AntiVirus Auto Protect Service"

NET START "Symantec Event Manager"

NET START "Norton Internet Security Accounts Manager"
_____________________________


am i doing something wrong or.........

can u see the problem?

Vargas
10-28-2004, 01:37 PM
no idea, it worked here when i tested it.
maybe your ~1 should be ~2?
try this:
create a bat file with the command del *.log
and place it in your log folder, then copy a SHORTCUT of it to your desktop, or wherever. then on the shortcuts properties, make sure the start in folder points to your log folder.

EDIT: you should also add a PAUSE command above and below the del command so you can read any error messages you might be getting, on your bigger bat file.
i dont have norton, so i don't know about it, but you say the commands net stop shut it down?

100%
10-28-2004, 03:55 PM
ok thanx i got this off another guy and it works

del /q "C:\Documents and Settings\All Users\Application Data\Symantec\Norton Internet Security\Log\*.*"

i cut down the symantec services to see which ones are really needed to delete the logs
so this is how it looks like
-----------------------------------------------------
NET STOP "Norton AntiVirus Auto Protect Service"

NET STOP "Symantec Event Manager"

del /q "C:\Documents and Settings\All Users\Application Data\Symantec\Norton Internet Security\Log\*.*"

NET START "Norton AntiVirus Auto Protect Service"

NET START "Symantec Event Manager"
----------------------------------------------------

one more question

after it cleans the logs
how do i get it to run the Liveupdate immediatly afterwards?

The liveupdate program is in here:
C:\Program Files\Symantec\LiveUpdate
the application is called :
1.Settings.Default.LiveUpdate
(there is no extension)

Thanks again

the @PAUSE is useful cheers

About the NET STOP and NET START trick ill post a thread about it tomorrow - dont have it with me but basically you have to use the actual Service "name" in services and you can kill any process - found a batch which kills as many processes as possible so you can have a really raw system if you need to do some hardcore application (or gamingetc)

Vargas
10-28-2004, 07:43 PM
try
start "C:\Program Files\Symantec\LiveUpdate\1.Settings.Default.LiveUpdate"

100%
10-29-2004, 03:58 PM
perfect vargas - you are a genius
cheers

orcutt989
10-29-2004, 09:03 PM
That is weird, i went to that directory, and there is no logs of my online activity. Only these weird files that when i tried to open them in Notepad, my computer froze up for a half and hour, and then my entire page file was being used up, and the processor was going to explode. I was forced to restart. Why jesus, why.