j33ama wrote:not sure bout this batch file ? sounds good though can you explain ?
just cleaned quite a bit , reg mechanic found 523 problems !
also got trojanhunter
Well this is the batch I run at home, forgot it runs the mrt.exe which is the microsoft malicious software rmoval tool which is pump and it should be callignwindows defencer but iirc that erm needs windows validation to install.....
Good few lines in there is my machien backing up my stuff to two small hard disk boxes I have on my home lan so that I have 3 mirrors of my data.
The batch finishes iwth a pause so I can check each day that it has run, it also chucks a few entries in to the event viewer.
title ***Nightly House Keeping! ***
eventcreate /t information /id 1 /d "Nightly sysadmin starting"
chkdsk c: /F
eventcreate /t information /id 1 /d "Nightly Chkdsk complete"
c:\windows\system32\defrag.exe c:\ -f -v
eventcreate /t information /id 1 /d "Nightly Defrag complete"
echo Home vids on NAS1 to NAS2
xcopy s:\home9v~1\*.* x:\home9v~1 /d /e /y /v
echo Photos from NAS1 to NAS2
xcopy y:\*.* t:\ /D /E /Y /v
echo Music from NAS1 to NAS2
xcopy z:\*.* u:\ /D /E /Y /v
echo My Documents to NAS1
xcopy C:\Docume~1\Sanjoy~2\Mydocu~1\*.* q:\sanjoy /D /E /Y /v
xcopy C:\Docume~1\SarahD~1.sat\Mydocu~1\*.* q:\sarah /D /E /Y /v
echo My Docs on NAS2 to NAS2
xcopy q:\*.* r: /D /E /Y /v
eventcreate /t information /id 1 /d "Nightly Backup complete"
cd\
cd progra~1\spybot~1\spybotsd.exe /autocheck /autofix /onlyspyware /autoclose
eventcreate /t information /id 1 /d "Nightly Spyware check complete"
mrt /f:y /q
eventcreate /t information /id 1 /d "Nightly MS Malicious SW check complete"
eventcreate /t information /id 1 /d "Nightly sysadmin complete"
pause