Xander
Banned
- Reaction score
- 66
- Location
- Niagara region, Ontario
I couldn't believe this hadn't been posted a year ago. I've been using this for at least that long.
http://agnipulse.com/2009/12/kaspersky-rescue-disk-updater/
This lets you (separately) download the main ISO once, drop it in that folder, and thereafter, download updates and recompile the ISO afresh.
I have this set up as a scheduled task to run a half hour before my day starts on Monday mornings. If you set it up as a scheduled task, make sure you fill in the "Start In" (folder) as it won't work otherwise.
I have this added to the end of the diskupdt.bat file.
When I sit down at my desk, it's waiting for me to confirm my Zalman is plugged in and then it will copy the ISOs over and burn a CD (other reason to Pause is to ensure there's a disc in there)
http://agnipulse.com/2009/12/kaspersky-rescue-disk-updater/
This lets you (separately) download the main ISO once, drop it in that folder, and thereafter, download updates and recompile the ISO afresh.
I have this set up as a scheduled task to run a half hour before my day starts on Monday mornings. If you set it up as a scheduled task, make sure you fill in the "Start In" (folder) as it won't work otherwise.
I have this added to the end of the diskupdt.bat file.
Code:
:end
Echo on
REM Copy to my NAS
copy c:\kav\rescue*.iso n:\_iso\virus\ /y
echo off
pause
REM Pause before copying it to my Zalman in case it's not plugged in.
copy c:\kav\rescue*.iso i:\_iso\virus\ /y
REM You can automate getting this window ready but can't start the actual burn or for a verification.
REM This works in Win8. If you're running another OS, you'll need to set up a different program for this.
isoburn e: "C:\KAV\rescue.iso"
exit