How can I create a bi-weekly reminder? remind users to virus/spyware scan
#1
Posted 25 June 2005 - 01:59 PM
So I'm trying to figure out some way to have a reminder pop up on their screen every two weeks to remind them to LiveUpdate/ Webupdate all the programs as well as do a full system scan. What would be really slick is to somehow have a checker routine to check the last update date for each of those programs as well as the last date of a full scan and if it isn't current, how that message keep popping up till they complete the tasks. I was thinking of maybe utilizing the LegalNoticeCaption in Winlogon of the registry where the checker routine can either add the reminder message or remove it. The only problem I can see with this whole thing is that it may trigger Norton or Microsoft Anti-spyware if it's a script trying to run.
Any ideas on this??
#3
Posted 25 June 2005 - 02:33 PM
REM ** CHECK ROUTINE **
REM *
REM ** Check NAV2005 Status **
If FullSystemScan_Date >= 2weeks from current date then goto MSG
IF VirusDefinitions >= 2 weeks from current date then goto MSG
REM *
REM * Check Ad-Aware Status *
IF LastScan_Date >= 2weeks from current date then goto MSG
IF Definition File date >= 2weeks from current date then goto MSG
REM *
REM * Check Microsoft Anti-spyware Status *
IF LastScan_Date >= 2weeks from current date then goto MSG
IF Definition File date >= 2weeks from current date then goto MSG
:ClearMSG
HKLM\Software\Microsoft\Current Version\Windows NT\CurrentVersion\Winlogon
LegalNoticeCaption=""
LegalNoticeText=""
EXIT
:MSG
HKLM\Software\Microsoft\Current Version\Windows NT\CurrentVersion\Winlogon
LegalNoticeCaption="IMPORTANT REMINDER"
LegalNoticeText="It appears that one or more of your Anti-Spyware/Anti-Virus applications is either not up to date or you have NOT done a full system scan in a while. You must run Live update/Web update for each of the applications as well as do a full system scan. Once completed, this message will no longer appear."
EXIT
#4
Posted 25 June 2005 - 05:56 PM
Are you setting up the AV software and the Anti-Spyware software??
If they are on a domain, setup a AV server to push out the updates.
If no domain, setup the live update settings as best you can, since you can't lock it out, and hope for the best.
#5
Posted 25 June 2005 - 06:59 PM
This arrangement works well for me, been awhile since I've received any calls about hosed machines (I mostly credit Microsoft AnitSpyware for that). I find that users are pretty good about letting the proggies run their scans and then walking through the removal process when problems are found. Both the programs and the users are getting more sophisticated, knock wood.
#6
Posted 25 June 2005 - 11:26 PM
Norton AV defaults to a virus Scan on Friday's at 8pm and Microsoft Antispyware at 2am. I wish all the users had their systems on at those times and it would not be a problem, but most people think that they are supposed to shut down the computer as soon as they are done with something as though they are wasting electricity otherwise. Maybe it's just a loosing battle trying to get these people to conform!
#7
Posted 26 June 2005 - 02:57 AM
#8
Posted 27 June 2005 - 06:38 AM
Quote
Well use the relevent settings in these Applications GUI to set the update and scan times to something more relevent for each user.
This isn't rocket science you know!
Kind Regards
Simon
#9
Posted 27 June 2005 - 02:49 PM
PsiMoon314, on Jun 27 2005, 06:38 AM, said:
Well use the relevent settings in these Applications GUI to set the update and scan times to something more relevent for each user.
This isn't rocket science you know!
<{POST_SNAPBACK}>
I realize I can alter the scan times, but it's hard to predict when the user will have his/her computer on. I kind of like the idea of a "Nag" message that will go away once they have done what they have been instructed to do. Kind of like a reward system. Comply and no nag. Don't comply and you will continue to get the "nag".
I have created two registry files (one that contains LegalNoticeText and one that has LegalNoticeText blanked out), now It's just a matter of coming up with a check routine to toggle between the two .reg entries. Or if I have to, a schedule to toggle these two every two weeks.
#10
Posted 27 June 2005 - 11:39 PM
Do you think we could make it also nag a person before they post to actually read what is said, comprehend, understand, soak in, then speak?????
Case in point......
Quote
QUOTE
Norton AV defaults to a virus Scan on Friday's at 8pm and Microsoft Antispyware at 2am.
Well use the relevent settings in these Applications GUI to set the update and scan times to something more relevent for each user.
This isn't rocket science you know! laugh.gif
Kind Regards
Simon
Sorry but the "DEFAULTS" word jump out like a sore thumb.....
#11
Posted 28 June 2005 - 01:29 AM
So, short of a boot in the butt, I like your idea of a nag. Maybe on systems like this the Task Scheduler, as smashly suggested, is a good candidate. I can envision an AutoIt script near the end of the install that prompts you whether to set up the task scheduler, would fit nicely with my "Rename Machine" schtick, which also runs at the end.
Simpler solutions?
Edit: Asta, can you elaborate on your "outlook or "post it" program for computers" suggestion? Appreciated.
This post has been edited by blinkdt: 28 June 2005 - 01:32 AM
#12
Posted 28 June 2005 - 05:23 AM
Try using AutoIT, since then you could have a popup and whatnot.
You can somehow impliment it into their web browser so that the script would only run when they open up their browser (or try to go online, rather). That is, if you think you're savvy enough to do it.
If it were ME trying to do this, I would have the script start whenever they start their computer, where it would check the date and determine whether or not they need to update. To make it do that for any user, you can have it store the info in the HKCU using cmdlines.txt or you can put it in in HKLM. Personally, I'd go with HKCU during cmdlines.txt:
REG ADD "HKU\.DEFAULT\Software\Microsoft\Windows\CurrentVersion\Run" /v "Shortcuts" /d "%SystemDrive%\\CheckDefs.exe" /f
Meh. I know I'm probably just telling you something already know ... but I figured I'd put in my 2cents anyway.
#13
Posted 29 June 2005 - 05:10 AM
blinkdt, on Jun 28 2005, 01:29 AM, said:
<{POST_SNAPBACK}>
Exactly! There are still many dial-up users out there and even though I have instructed them initially to do weekly live updates and scans, 9 out of 10 of them DONT! nor have they done so in months. And same with the yellow shield, they simply close out the message thing saying updates are downloaded and ready to apply. I guess these same kind of people also never do oil changes on there car and ignore that yellow 'check engine' light that's on for no paticular reason as far as they are concerned.
- ← Run apps with unattended inst.
- Unattended Windows 2000/XP/2003
- Running installations directly on CD/DVD →



Help

Back to top









