Return-Path: Received: from post.thorcom.com (post.thorcom.com [195.171.43.25]) by mtain-de06.r1000.mx.aol.com (Internet Inbound) with ESMTP id 17A18380000A8; Thu, 15 Dec 2011 12:04:00 -0500 (EST) Received: from majordom by post.thorcom.com with local (Exim 4.14) id 1RbE7B-0000fC-F7 for rs_out_1@blacksheep.org; Thu, 15 Dec 2011 16:25:01 +0000 Received: from [195.171.43.32] (helo=relay1.thorcom.net) by post.thorcom.com with esmtp (Exim 4.14) id 1RbE7A-0000f1-Ps for rsgb_lf_group@blacksheep.org; Thu, 15 Dec 2011 16:25:00 +0000 Received: from moutng.kundenserver.de ([212.227.126.187]) by relay1.thorcom.net with esmtp (Exim 4.63) (envelope-from ) id 1RbE78-000199-F9 for rsgb_lf_group@blacksheep.org; Thu, 15 Dec 2011 16:25:00 +0000 Received: from [192.168.2.104] (p548D1BA3.dip.t-dialin.net [84.141.27.163]) by mrelayeu.kundenserver.de (node=mreu2) with ESMTP (Nemesis) id 0MC5PI-1RSSge24wK-009KGJ; Thu, 15 Dec 2011 17:24:52 +0100 Message-ID: <4EEA1F54.7080001@legal-medicine.de> Date: Thu, 15 Dec 2011 17:24:52 +0100 From: pws User-Agent: Mozilla/5.0 (X11; U; Linux i686; de; rv:1.9.2.24) Gecko/20111101 SUSE/3.1.16 Thunderbird/3.1.16 MIME-Version: 1.0 To: rsgb_lf_group@blacksheep.org References: <4EE48808.9050.3ABB975@mike.dennison.ntlworld.com>, <4EE4A923.2070108@iup.uni-heidelberg.de> <4EE8D025.4446.7AF125@mike.dennison.ntlworld.com> <4EE90731.30606@legal-medicine.de> In-Reply-To: <4EE90731.30606@legal-medicine.de> X-Provags-ID: V02:K0:5UzDUHQlFm0AC0N/MAm3luUea9b/DBr+ZpHoVrtK9j1 pp9dKl22vgbczOwQkoBEcLprnKi2f66wi/Vg5yV0BhTsiUFega LBfmtJU4X/mGJ3ArXUbmzYARIrDqqMHEZV2p3w7Vwpmb2QFSQh urMYvomv6kBnsVaWemUwE72LMayU0ZGOXF74/xoeB6t7/19Ryl F+d6w/mZjxHwC4/nfzvZDmFZurghJNCCwHaLYZ2vlaoy87rp7S XouFB4Tg9fD1NCyheAXS3QZCHWFP6O2X+1822VgcHn9dbCUq2e UMxVeSNzY6fMNcygIE0DpRe82iMPDp7RCI00LOcygA3JHIyqlh 7aJmFV7FCLL5cisgT0aS1XbqaAaobP9/LgFpEZGcU X-Spam-Score: 1.4 (+) X-Spam-Report: autolearn=disabled,RATWARE_GECKO_BUILD=1.426 Subject: Re: LF: Grabber grabber? Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on post.thorcom.com X-Spam-Level: X-Spam-Status: No, hits=0.0 required=5.0 tests=none autolearn=no version=2.63 X-SA-Exim-Scanned: Yes Sender: owner-rsgb_lf_group@blacksheep.org Precedence: bulk Reply-To: rsgb_lf_group@blacksheep.org X-Listname: rsgb_lf_group X-SA-Exim-Rcpt-To: rs_out_1@blacksheep.org X-SA-Exim-Scanned: No; SAEximRunCond expanded to false x-aol-global-disposition: G X-AOL-SCOLL-SCORE: 0:2:467887840:93952408 X-AOL-SCOLL-URL_COUNT: 0 x-aol-sid: 3039ac1d40ce4eea28804af5 X-AOL-IP: 195.171.43.25 X-AOL-SPF: domain : blacksheep.org SPF : none Hi Mike, I'm not using any Win-Stuff but running many instances of wget on unix. What follows works on MS-Server 2003 (checked this at work): Download and install that: http://downloads.sourceforge.net/gnuwin32/wget-1.11.4-1-setup.exe - Next make a directory where to store the images. - Open your favorite editor, copy and paste the following lines into REM Recipe! REM simple example how to get any stuff from websites using wget REM this script downloads and stores two images from TF3HZ server. C:\Programme\GnuWin32\bin\wget http://dl.dropbox.com/u/13099852/capt04.jpg C:\Programme\GnuWin32\bin\wget http://dl.dropbox.com/u/13099852/capt05.jpg pause - You have to modify the wget-path "C:\Programme\GnuWin32\..." since this is from a German version of M$-Win. - Store it into that image directory as "grab_grabbers.cmd" for example. - Go to the web site of the monitor ("grabber") you want to download from, open the html source and locate the image(s). Copy and paste the FULL paths into the batch script like shown in the example above. Add as many lines as you need. - Start this batch-script and look for any errors. If all is working fine modify the last line to "REM pause" or delete it. - Now create a task plan in Windows to start it automagically. wget will not overwrite the old files by default. Instead it will add something like "1", "2", etc. to the file names. This can be switched to "overwrite" by an option, or if you want to give special file names add " > your_filename_here" at the end of each line. This is a stupid simple way of using wget safely. It can do much more, but be careful adding any options unless you really know what are you doing. Using wrong options wget could disgruntle server administrators or in worst case try to download the whole internet. RTFM! Peter