Re: listener (General questions)
Hi Havey,
Maybe I have solution for you.
You can make VBS script and place it in Scheduled Tasks (in Windows Control Panel) and run VSB script every for example 5 minutes.
VBS script will connect to your server and download and delete files.
Here is example:
-------------------------------
Option Explicit
Dim objFTP, lst
Set objFTP = WScript.CreateObject( WeOnlyDo.wodSFTPCom.1 , wod_ )
objFTP.Hostname = your_server_name
objFTP.Login = your_login
objFTP.Password = your_password
objFTP.Blocking = 1
objFTP.Connect
objFtp.GetFiles c:weonlydo , /home/something/weonlydo
objFtp.DeleteFiles /home/something/weonlydo
objFTP.Disconnect
Sub wod_Disconnected()
WScript.Echo Done and Disconnected
End Sub
-------------------------------
More help how to configure Scheduled Tasks you can find here:
http://support.microsoft.com/kb/308569
I make it run every five minutes and it works like a charm.
Hope this helps.
Regards,
Drazen
Complete thread:
- listener - havey, 2006-10-13, 23:02
- Re: listener - wodSupport, 2006-10-13, 23:19
- Re: listener - havey, 2006-10-13, 23:40
- Re: listener - wodDrazen, 2006-10-13, 23:52
- Re: listener - havey, 2006-10-14, 00:26
- Re: listener - wodSupport, 2006-10-14, 00:28
- Re: listener - havey, 2006-10-14, 00:26
- Re: listener - wodDrazen, 2006-10-13, 23:52
- Re: listener - havey, 2006-10-13, 23:40
- Re: listener - wodSupport, 2006-10-13, 23:19