Results 1 to 9 of 9

Thread: Ad-Aware SE and automating signature file downloads

  1. #1
    David H. Lipman Guest

    Ad-Aware SE and automating signature file downloads

    Since Ad-aware SE no longer gets updates by itself, I am providing a way for those
    interested to automate the download process.

    You can create a batch file such as below which uses the GNU WGET utility and the UnZip
    utility by Info-ZIP.

    The following assumes Ad-aware is in; C:\Program Files\Lavasoft\Ad-aware

    @echo off
    cd "C:\Program Files\Lavasoft\Ad-aware"
    wget -N http://download.lavasoft.com/public/defs.zip
    unzip -j -o defs.zip

    Then you can use the system Task Scheduler to run the batch file whenever you want it to.

    --
    Dave
    http://www.claymania.com/removal-trojan-adware.html
    Multi-AV - http://www.pctipp.ch/downloads/dl/35905.asp




  2. #2
    Ed Guest

    Re: Ad-Aware SE and automating signature file downloads

    On 29/01/08 00:54, David H. Lipman wrote:
    > Since Ad-aware SE no longer gets updates by itself, I am providing a way for those
    > interested to automate the download process.
    >
    > You can create a batch file such as below which uses the GNU WGET utility and the UnZip
    > utility by Info-ZIP.
    >
    > The following assumes Ad-aware is in; C:\Program Files\Lavasoft\Ad-aware
    >
    > @echo off
    > cd "C:\Program Files\Lavasoft\Ad-aware"
    > wget -N http://download.lavasoft.com/public/defs.zip
    > unzip -j -o defs.zip
    >
    > Then you can use the system Task Scheduler to run the batch file whenever you want it to.
    >


    Is the script stored within a file with a .bat extension?

    Do I have to make any changes if I am using WinZip to unzip the defs.zip
    file?

    Thanks,
    Ed


  3. #3
    John Guest

    Re: Ad-Aware SE and automating signature file downloads


    "David H. Lipman" <DLipman~nospam~@Verizon.Net> wrote in message
    news:dPunj.3908$ZO5.787@trnddc03...
    > Since Ad-aware SE no longer gets updates by itself, I am providing a way
    > for those
    > interested to automate the download process.
    >
    > You can create a batch file such as below which uses the GNU WGET utility
    > and the UnZip
    > utility by Info-ZIP.
    >
    > The following assumes Ad-aware is in; C:\Program Files\Lavasoft\Ad-aware
    >
    > @echo off
    > cd "C:\Program Files\Lavasoft\Ad-aware"
    > wget -N http://download.lavasoft.com/public/defs.zip
    > unzip -j -o defs.zip
    >
    > Then you can use the system Task Scheduler to run the batch file whenever
    > you want it to.
    >
    > --
    > Dave
    > http://www.claymania.com/removal-trojan-adware.html
    > Multi-AV - http://www.pctipp.ch/downloads/dl/35905.asp
    >
    >
    >

    Hi Dave
    I saw your post in alt.comp.freeware in regards to Ad-Aware SE definitions
    and have tried to create such a batch file without success. Can you give a
    simple detailed how to do please for the noobs like myself?



  4. #4
    David H. Lipman Guest

    Re: Ad-Aware SE and automating signature file downloads

    From: "Ed" <ex@directory>


    | Is the script stored within a file with a .bat extension?
    |
    | Do I have to make any changes if I am using WinZip to unzip the defs.zip
    | file?
    |
    | Thanks,
    | Ed

    What I posted is a simple batch file but any scripting language can be used. I use KiXtart
    script interpreter.

    The UNZIP.EXE utility will extract the definition file as needed. WinZip by itself is NOT a
    command line utility and it detracts from the scripting concept. Scripts use Command Line
    utilities.

    --
    Dave
    http://www.claymania.com/removal-trojan-adware.html
    Multi-AV - http://www.pctipp.ch/downloads/dl/35905.asp



  5. #5
    David H. Lipman Guest

    Re: Ad-Aware SE and automating signature file downloads

    From: "John" <nobodyname@noname.com>


    | Hi Dave
    | I saw your post in alt.comp.freeware in regards to Ad-Aware SE definitions
    | and have tried to create such a batch file without success. Can you give a
    | simple detailed how to do please for the noobs like myself?
    |

    Plaese elaborate on WHERE you are having problems.

    Have you ever written/created a batch file (.BAT or .CMD) ?

    --
    Dave
    http://www.claymania.com/removal-trojan-adware.html
    Multi-AV - http://www.pctipp.ch/downloads/dl/35905.asp



  6. #6
    Lil' Abner Guest

    Re: Ad-Aware SE and automating signature file downloads

    "David H. Lipman" <DLipman~nospam~@Verizon.Net> wrote in
    news:dPunj.3908$ZO5.787@trnddc03:

    > Since Ad-aware SE no longer gets updates by itself, I am providing a
    > way for those interested to automate the download process.
    >
    > You can create a batch file such as below which uses the GNU WGET
    > utility and the UnZip utility by Info-ZIP.
    >
    > The following assumes Ad-aware is in; C:\Program
    > Files\Lavasoft\Ad-aware
    >
    > @echo off
    > cd "C:\Program Files\Lavasoft\Ad-aware"
    > wget -N http://download.lavasoft.com/public/defs.zip
    > unzip -j -o defs.zip
    >
    > Then you can use the system Task Scheduler to run the batch file
    > whenever you want it to.


    It took a little doing but I got it done.
    Had to go get "WGET" (for Windows). Already had PKUNZIP from the MS-DOS
    days. Changed the folder name from Ad-Aware SE Personal to just Ad-Aware.
    Thanks, David. I don't like the 2007 version at all.

    --
    - The bible was written by the same people who said the earth was flat -

  7. #7
    Ed Guest

    Re: Ad-Aware SE and automating signature file downloads

    On 29/01/08 21:11, David H. Lipman wrote:
    > From: "Ed" <ex@directory>
    >
    >
    > | Is the script stored within a file with a .bat extension?
    > |
    > | Do I have to make any changes if I am using WinZip to unzip the defs.zip
    > | file?
    > |
    > | Thanks,
    > | Ed
    >
    > What I posted is a simple batch file but any scripting language can be used. I use KiXtart
    > script interpreter.
    >
    > The UNZIP.EXE utility will extract the definition file as needed. WinZip by itself is NOT a
    > command line utility and it detracts from the scripting concept. Scripts use Command Line
    > utilities.
    >


    I don't know what a scripting language is; that is way outside my
    experience. So, I will leave it.

    But thanks all the same.

    Ed

  8. #8
    John Guest

    Re: Ad-Aware SE and automating signature file downloads


    "David H. Lipman" <DLipman~nospam~@Verizon.Net> wrote in message
    news:zFMnj.6874$ZO5.5850@trnddc03...
    > From: "John" <nobodyname@noname.com>
    >
    >
    > | Hi Dave
    > | I saw your post in alt.comp.freeware in regards to Ad-Aware SE
    > definitions
    > | and have tried to create such a batch file without success. Can you give
    > a
    > | simple detailed how to do please for the noobs like myself?
    > |
    >
    > Plaese elaborate on WHERE you are having problems.


    at the beginning lol.

    I have Windows XP pro
    I have created a wgetgui folder and downloaded and extracted windows
    wgetgui.zip and wget-1.11.tar.bz2 into this folder. I have downloaded
    zip232xN.zip ( info-zip w32). Do I extract this into the same wgetgui
    folder ?
    I have downloaded a pdf tutorial called The Essential wGet GUIde by Ryan
    Corrigal.
    I have tried to follow it also but I must admit I can't get it to work.


    > Have you ever written/created a batch file (.BAT or .CMD) ?



    a little a long time ago ....a menu, ms-dos 5 or 6 O/S. I remember
    modifiying autoexec.bat and config.sys but must admit I have forgotten most
    of it .
    I'm know CMD is the command prompt available in windows xp.
    Start...Run...cmd

    > --
    > Dave
    > http://www.claymania.com/removal-trojan-adware.html
    > Multi-AV - http://www.pctipp.ch/downloads/dl/35905.asp
    >
    >


    When you suggested this method, I said cool, I'll give it a try.
    But maybe I should just download and extract the Adaware defs to the correct
    directory and be done with it.



  9. #9
    David H. Lipman Guest

    Re: Ad-Aware SE and automating signature file downloads

    From: "Ed" <ex@directory>


    | I don't know what a scripting language is; that is way outside my
    | experience. So, I will leave it.
    |
    | But thanks all the same.
    |
    | Ed

    That's fine -- Good luck.

    --
    Dave
    http://www.claymania.com/removal-trojan-adware.html
    Multi-AV - http://www.pctipp.ch/downloads/dl/35905.asp



Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •