Hello,
I have a file that I should be able to access every some days on
another computer, how can I access it (like getting it sent to me or
something) without using those remote adminsrating programs??

The whole process should be done automatically without any windows or
pop ups...

How could that be achieved?

Thanks

Re: Auto Send by Rich

Rich
Mon Jan 07 09:26:06 PST 2008


"Teddy379" <teddy379@gmail.com> wrote in message
news:71b124c4-b414-4ba7-8b04-aa85a9f858e3@c4g2000hsg.googlegroups.com...
> Hello,
> I have a file that I should be able to access every some days on
> another computer, how can I access it (like getting it sent to me or
> something) without using those remote adminsrating programs??
>
> The whole process should be done automatically without any windows or
> pop ups...
>
> How could that be achieved?
>
> Thanks

Why don't you put the file on web server somewhere that you can access from
where ever?
There are several free sites and Comcast has spot for your files as well.
Just a thought.

Rich



Re: Auto Send by Pegasus

Pegasus
Mon Jan 07 10:15:07 PST 2008


"Teddy379" <teddy379@gmail.com> wrote in message
news:71b124c4-b414-4ba7-8b04-aa85a9f858e3@c4g2000hsg.googlegroups.com...
> Hello,
> I have a file that I should be able to access every some days on
> another computer, how can I access it (like getting it sent to me or
> something) without using those remote adminsrating programs??
>
> The whole process should be done automatically without any windows or
> pop ups...
>
> How could that be achieved?
>
> Thanks

You could use the Task Scheduler on the other PC to invoke a
command line mailer such as blat.exe to send the file to yourself.
Post again if you need more details.



Re: Auto Send by Teddy379

Teddy379
Mon Jan 07 12:10:47 PST 2008

On Jan 7, 8:15 pm, "Pegasus \(MVP\)" <I....@fly.com.oz> wrote:
> "Teddy379" <teddy...@gmail.com> wrote in message
>
> news:71b124c4-b414-4ba7-8b04-aa85a9f858e3@c4g2000hsg.googlegroups.com...
>
> > Hello,
> > I have a file that I should be able to access every some days on
> > another computer, how can I access it (like getting it sent to me or
> > something) without using those remote adminsrating programs??
>
> > The whole process should be done automatically without any windows or
> > pop ups...
>
> > How could that be achieved?
>
> > Thanks
>
> You could use the Task Scheduler on the other PC to invoke a
> command line mailer such as blat.exe to send the file to yourself.
> Post again if you need more details.

Yeah I'd like more details... thank you..

Re: Auto Send by Teddy379

Teddy379
Mon Jan 07 12:11:05 PST 2008

On Jan 7, 7:26 pm, "Rich" <dontbothe...@work.com> wrote:
> "Teddy379" <teddy...@gmail.com> wrote in message
>
> news:71b124c4-b414-4ba7-8b04-aa85a9f858e3@c4g2000hsg.googlegroups.com...
>
> > Hello,
> > I have a file that I should be able to access every some days on
> > another computer, how can I access it (like getting it sent to me or
> > something) without using those remote adminsrating programs??
>
> > The whole process should be done automatically without any windows or
> > pop ups...
>
> > How could that be achieved?
>
> > Thanks
>
> Why don't you put the file on web server somewhere that you can access from
> where ever?
> There are several free sites and Comcast has spot for your files as well.
> Just a thought.
>
> Rich

hmm, free websites like?

Re: Auto Send by Pegasus

Pegasus
Mon Jan 07 12:52:55 PST 2008


"Teddy379" <teddy379@gmail.com> wrote in message
news:d13edaf4-826a-4704-9570-441700380355@j20g2000hsi.googlegroups.com...
> On Jan 7, 8:15 pm, "Pegasus \(MVP\)" <I....@fly.com.oz> wrote:
>> "Teddy379" <teddy...@gmail.com> wrote in message
>>
>> news:71b124c4-b414-4ba7-8b04-aa85a9f858e3@c4g2000hsg.googlegroups.com...
>>
>> > Hello,
>> > I have a file that I should be able to access every some days on
>> > another computer, how can I access it (like getting it sent to me or
>> > something) without using those remote adminsrating programs??
>>
>> > The whole process should be done automatically without any windows or
>> > pop ups...
>>
>> > How could that be achieved?
>>
>> > Thanks
>>
>> You could use the Task Scheduler on the other PC to invoke a
>> command line mailer such as blat.exe to send the file to yourself.
>> Post again if you need more details.
>
> Yeah I'd like more details... thank you..

Here is a typical batch file to mail a file:

@ech off
set Sender=teddy@teddy.com
set Receiver=teddy@teddy.com
set Subject=Teddy's Report %date%
set smtp=smtp.teddy.com

cd 2>"c:\Nullfile"
blat.exe "c:\Nullfile" -to %Receiver% -subject "%Subject%" -f
%Sender% -server %smtp% -attach "c:\test.xls"

You can download blat from any number of sites. To send this file to
yourself every day, invoke the above batch file with the Task Scheduler.



Re: Auto Send by Rich

Rich
Mon Jan 07 13:17:18 PST 2008


"Teddy379" <teddy379@gmail.com> wrote in message
news:a8946b60-9be1-4a61-ac0b-1b38bec2219a@v67g2000hse.googlegroups.com...
> On Jan 7, 7:26 pm, "Rich" <dontbothe...@work.com> wrote:
>> "Teddy379" <teddy...@gmail.com> wrote in message
>>
>> news:71b124c4-b414-4ba7-8b04-aa85a9f858e3@c4g2000hsg.googlegroups.com...
>>
>> > Hello,
>> > I have a file that I should be able to access every some days on
>> > another computer, how can I access it (like getting it sent to me or
>> > something) without using those remote adminsrating programs??
>>
>> > The whole process should be done automatically without any windows or
>> > pop ups...
>>
>> > How could that be achieved?
>>
>> > Thanks
>>
>> Why don't you put the file on web server somewhere that you can access
>> from
>> where ever?
>> There are several free sites and Comcast has spot for your files as well.
>> Just a thought.
>>
>> Rich
>
> hmm, free websites like?

http://www.google.com/search?q=free+web+storage&ie=utf-8&oe=utf-8&aq=t&rls=org.mozilla:en-US:official&client=firefox-a

Like those. Google is everyones friend!

Rich



Re: Auto Send by Teddy379

Teddy379
Mon Jan 07 13:36:12 PST 2008

On Jan 7, 10:52 pm, "Pegasus \(MVP\)" <I....@fly.com.oz> wrote:
> "Teddy379" <teddy...@gmail.com> wrote in message
>
> news:d13edaf4-826a-4704-9570-441700380355@j20g2000hsi.googlegroups.com...
>
>
>
> > On Jan 7, 8:15 pm, "Pegasus \(MVP\)" <I....@fly.com.oz> wrote:
> >> "Teddy379" <teddy...@gmail.com> wrote in message
>
> >>news:71b124c4-b414-4ba7-8b04-aa85a9f858e3@c4g2000hsg.googlegroups.com...
>
> >> > Hello,
> >> > I have a file that I should be able to access every some days on
> >> > another computer, how can I access it (like getting it sent to me or
> >> > something) without using those remote adminsrating programs??
>
> >> > The whole process should be done automatically without any windows or
> >> > pop ups...
>
> >> > How could that be achieved?
>
> >> > Thanks
>
> >> You could use the Task Scheduler on the other PC to invoke a
> >> command line mailer such as blat.exe to send the file to yourself.
> >> Post again if you need more details.
>
> > Yeah I'd like more details... thank you..
>
> Here is a typical batch file to mail a file:
>
> @ech off
> set Sender=te...@teddy.com
> set Receiver=te...@teddy.com
> set Subject=Teddy's Report %date%
> set smtp=smtp.teddy.com
>
> cd 2>"c:\Nullfile"
> blat.exe "c:\Nullfile" -to %Receiver% -subject "%Subject%" -f
> %Sender% -server %smtp% -attach "c:\test.xls"
>
> You can download blat from any number of sites. To send this file to
> yourself every day, invoke the above batch file with the Task Scheduler.

hmm, same problem I got, the smtp server, it always requires
authentication... How could I pass that?

Re: Auto Send by Teddy379

Teddy379
Mon Jan 07 13:43:06 PST 2008

On Jan 7, 10:52 pm, "Pegasus \(MVP\)" <I....@fly.com.oz> wrote:
> "Teddy379" <teddy...@gmail.com> wrote in message
>
> news:d13edaf4-826a-4704-9570-441700380355@j20g2000hsi.googlegroups.com...
>
>
>
> > On Jan 7, 8:15 pm, "Pegasus \(MVP\)" <I....@fly.com.oz> wrote:
> >> "Teddy379" <teddy...@gmail.com> wrote in message
>
> >>news:71b124c4-b414-4ba7-8b04-aa85a9f858e3@c4g2000hsg.googlegroups.com...
>
> >> > Hello,
> >> > I have a file that I should be able to access every some days on
> >> > another computer, how can I access it (like getting it sent to me or
> >> > something) without using those remote adminsrating programs??
>
> >> > The whole process should be done automatically without any windows or
> >> > pop ups...
>
> >> > How could that be achieved?
>
> >> > Thanks
>
> >> You could use the Task Scheduler on the other PC to invoke a
> >> command line mailer such as blat.exe to send the file to yourself.
> >> Post again if you need more details.
>
> > Yeah I'd like more details... thank you..
>
> Here is a typical batch file to mail a file:
>
> @ech off
> set Sender=te...@teddy.com
> set Receiver=te...@teddy.com
> set Subject=Teddy's Report %date%
> set smtp=smtp.teddy.com
>
> cd 2>"c:\Nullfile"
> blat.exe "c:\Nullfile" -to %Receiver% -subject "%Subject%" -f
> %Sender% -server %smtp% -attach "c:\test.xls"
>
> You can download blat from any number of sites. To send this file to
> yourself every day, invoke the above batch file with the Task Scheduler.

where shall i put the blat.exe file?

Re: Auto Send by Pegasus

Pegasus
Mon Jan 07 13:54:07 PST 2008


"Teddy379" <teddy379@gmail.com> wrote in message
news:ab4568ef-7769-4812-8efb-4c3d4c53c1d7@d21g2000prf.googlegroups.com...
> On Jan 7, 10:52 pm, "Pegasus \(MVP\)" <I....@fly.com.oz> wrote:
>> "Teddy379" <teddy...@gmail.com> wrote in message
>>
>> news:d13edaf4-826a-4704-9570-441700380355@j20g2000hsi.googlegroups.com...
>>
>>
>>
>> > On Jan 7, 8:15 pm, "Pegasus \(MVP\)" <I....@fly.com.oz> wrote:
>> >> "Teddy379" <teddy...@gmail.com> wrote in message
>>
>> >>news:71b124c4-b414-4ba7-8b04-aa85a9f858e3@c4g2000hsg.googlegroups.com...
>>
>> >> > Hello,
>> >> > I have a file that I should be able to access every some days on
>> >> > another computer, how can I access it (like getting it sent to me or
>> >> > something) without using those remote adminsrating programs??
>>
>> >> > The whole process should be done automatically without any windows
>> >> > or
>> >> > pop ups...
>>
>> >> > How could that be achieved?
>>
>> >> > Thanks
>>
>> >> You could use the Task Scheduler on the other PC to invoke a
>> >> command line mailer such as blat.exe to send the file to yourself.
>> >> Post again if you need more details.
>>
>> > Yeah I'd like more details... thank you..
>>
>> Here is a typical batch file to mail a file:
>>
>> @ech off
>> set Sender=te...@teddy.com
>> set Receiver=te...@teddy.com
>> set Subject=Teddy's Report %date%
>> set smtp=smtp.teddy.com
>>
>> cd 2>"c:\Nullfile"
>> blat.exe "c:\Nullfile" -to %Receiver% -subject "%Subject%" -f
>> %Sender% -server %smtp% -attach "c:\test.xls"
>>
>> You can download blat from any number of sites. To send this file to
>> yourself every day, invoke the above batch file with the Task Scheduler.
>
> where shall i put the blat.exe file?

If the dog wants a bone, give it a bone!

@ech off
set Sender=teddy@teddy.com
set Receiver=teddy@teddy.com
set Subject=Teddy's Report %date%
set smtp=smtp.teddy.com
set Account=teddy@teddy.com
set pw=teddy

cd 2>"c:\Nullfile"
c:\Tools\blat.exe "c:\Nullfile" -to %Receiver% -subject "%Subject%" -f
%Sender% -server %smtp% -u %Account% -pw %pw% -attach "c:\test.xls"

You can place blat.exe whereever you like, as long as
you tell the batch file where to find it!



Re: Auto Send by Teddy379

Teddy379
Mon Jan 07 14:25:50 PST 2008

On Jan 7, 11:54 pm, "Pegasus \(MVP\)" <I....@fly.com.oz> wrote:
> "Teddy379" <teddy...@gmail.com> wrote in message
>
> news:ab4568ef-7769-4812-8efb-4c3d4c53c1d7@d21g2000prf.googlegroups.com...
>
>
>
> > On Jan 7, 10:52 pm, "Pegasus \(MVP\)" <I....@fly.com.oz> wrote:
> >> "Teddy379" <teddy...@gmail.com> wrote in message
>
> >>news:d13edaf4-826a-4704-9570-441700380355@j20g2000hsi.googlegroups.com...
>
> >> > On Jan 7, 8:15 pm, "Pegasus \(MVP\)" <I....@fly.com.oz> wrote:
> >> >> "Teddy379" <teddy...@gmail.com> wrote in message
>
> >> >>news:71b124c4-b414-4ba7-8b04-aa85a9f858e3@c4g2000hsg.googlegroups.com...
>
> >> >> > Hello,
> >> >> > I have a file that I should be able to access every some days on
> >> >> > another computer, how can I access it (like getting it sent to me or
> >> >> > something) without using those remote adminsrating programs??
>
> >> >> > The whole process should be done automatically without any windows
> >> >> > or
> >> >> > pop ups...
>
> >> >> > How could that be achieved?
>
> >> >> > Thanks
>
> >> >> You could use the Task Scheduler on the other PC to invoke a
> >> >> command line mailer such as blat.exe to send the file to yourself.
> >> >> Post again if you need more details.
>
> >> > Yeah I'd like more details... thank you..
>
> >> Here is a typical batch file to mail a file:
>
> >> @ech off
> >> set Sender=te...@teddy.com
> >> set Receiver=te...@teddy.com
> >> set Subject=Teddy's Report %date%
> >> set smtp=smtp.teddy.com
>
> >> cd 2>"c:\Nullfile"
> >> blat.exe "c:\Nullfile" -to %Receiver% -subject "%Subject%" -f
> >> %Sender% -server %smtp% -attach "c:\test.xls"
>
> >> You can download blat from any number of sites. To send this file to
> >> yourself every day, invoke the above batch file with the Task Scheduler.
>
> > where shall i put the blat.exe file?
>
> If the dog wants a bone, give it a bone!
>
> @ech off
> set Sender=te...@teddy.com
> set Receiver=te...@teddy.com
> set Subject=Teddy's Report %date%
> set smtp=smtp.teddy.com
> set Account=te...@teddy.com
> set pw=teddy
>
> cd 2>"c:\Nullfile"
> c:\Tools\blat.exe "c:\Nullfile" -to %Receiver% -subject "%Subject%" -f
> %Sender% -server %smtp% -u %Account% -pw %pw% -attach "c:\test.xls"
>
> You can place blat.exe whereever you like, as long as
> you tell the batch file where to find it!

hmm, well I tried typing each line in the cmd.exe but then I reached
the cd 2>"c:\Nullfile" it said Access Denied, I tried to change the
directory and copy the blat files to the new directory but it didn't
work...

Re: Auto Send by Pegasus

Pegasus
Mon Jan 07 14:37:59 PST 2008


"Teddy379" <teddy379@gmail.com> wrote in message
news:226b27a3-56e6-4c03-be98-cc0fb942fc3e@m34g2000hsf.googlegroups.com...
> On Jan 7, 11:54 pm, "Pegasus \(MVP\)" <I....@fly.com.oz> wrote:
>> "Teddy379" <teddy...@gmail.com> wrote in message
>>
>> news:ab4568ef-7769-4812-8efb-4c3d4c53c1d7@d21g2000prf.googlegroups.com...
>>
>>
>>
>> > On Jan 7, 10:52 pm, "Pegasus \(MVP\)" <I....@fly.com.oz> wrote:
>> >> "Teddy379" <teddy...@gmail.com> wrote in message
>>
>> >>news:d13edaf4-826a-4704-9570-441700380355@j20g2000hsi.googlegroups.com...
>>
>> >> > On Jan 7, 8:15 pm, "Pegasus \(MVP\)" <I....@fly.com.oz> wrote:
>> >> >> "Teddy379" <teddy...@gmail.com> wrote in message
>>
>> >> >>news:71b124c4-b414-4ba7-8b04-aa85a9f858e3@c4g2000hsg.googlegroups.com...
>>
>> >> >> > Hello,
>> >> >> > I have a file that I should be able to access every some days on
>> >> >> > another computer, how can I access it (like getting it sent to me
>> >> >> > or
>> >> >> > something) without using those remote adminsrating programs??
>>
>> >> >> > The whole process should be done automatically without any
>> >> >> > windows
>> >> >> > or
>> >> >> > pop ups...
>>
>> >> >> > How could that be achieved?
>>
>> >> >> > Thanks
>>
>> >> >> You could use the Task Scheduler on the other PC to invoke a
>> >> >> command line mailer such as blat.exe to send the file to yourself.
>> >> >> Post again if you need more details.
>>
>> >> > Yeah I'd like more details... thank you..
>>
>> >> Here is a typical batch file to mail a file:
>>
>> >> @ech off
>> >> set Sender=te...@teddy.com
>> >> set Receiver=te...@teddy.com
>> >> set Subject=Teddy's Report %date%
>> >> set smtp=smtp.teddy.com
>>
>> >> cd 2>"c:\Nullfile"
>> >> blat.exe "c:\Nullfile" -to %Receiver% -subject "%Subject%" -f
>> >> %Sender% -server %smtp% -attach "c:\test.xls"
>>
>> >> You can download blat from any number of sites. To send this file to
>> >> yourself every day, invoke the above batch file with the Task
>> >> Scheduler.
>>
>> > where shall i put the blat.exe file?
>>
>> If the dog wants a bone, give it a bone!
>>
>> @ech off
>> set Sender=te...@teddy.com
>> set Receiver=te...@teddy.com
>> set Subject=Teddy's Report %date%
>> set smtp=smtp.teddy.com
>> set Account=te...@teddy.com
>> set pw=teddy
>>
>> cd 2>"c:\Nullfile"
>> c:\Tools\blat.exe "c:\Nullfile" -to %Receiver% -subject "%Subject%" -f
>> %Sender% -server %smtp% -u %Account% -pw %pw% -attach "c:\test.xls"
>>
>> You can place blat.exe whereever you like, as long as
>> you tell the batch file where to find it!
>
> hmm, well I tried typing each line in the cmd.exe but then I reached
> the cd 2>"c:\Nullfile" it said Access Denied, I tried to change the
> directory and copy the blat files to the new directory but it didn't
> work...

It does not matter where that file resides - just select some
location to which you have full access, and make sure it's
the same in both places in the batch file.



Re: Auto Send by Teddy379

Teddy379
Tue Jan 08 05:25:21 PST 2008

On Jan 8, 12:37 am, "Pegasus \(MVP\)" <I....@fly.com.oz> wrote:
> "Teddy379" <teddy...@gmail.com> wrote in message
>
> news:226b27a3-56e6-4c03-be98-cc0fb942fc3e@m34g2000hsf.googlegroups.com...
>
>
>
> > On Jan 7, 11:54 pm, "Pegasus \(MVP\)" <I....@fly.com.oz> wrote:
> >> "Teddy379" <teddy...@gmail.com> wrote in message
>
> >>news:ab4568ef-7769-4812-8efb-4c3d4c53c1d7@d21g2000prf.googlegroups.com...
>
> >> > On Jan 7, 10:52 pm, "Pegasus \(MVP\)" <I....@fly.com.oz> wrote:
> >> >> "Teddy379" <teddy...@gmail.com> wrote in message
>
> >> >>news:d13edaf4-826a-4704-9570-441700380355@j20g2000hsi.googlegroups.com...
>
> >> >> > On Jan 7, 8:15 pm, "Pegasus \(MVP\)" <I....@fly.com.oz> wrote:
> >> >> >> "Teddy379" <teddy...@gmail.com> wrote in message
>
> >> >> >>news:71b124c4-b414-4ba7-8b04-aa85a9f858e3@c4g2000hsg.googlegroups.com...
>
> >> >> >> > Hello,
> >> >> >> > I have a file that I should be able to access every some days on
> >> >> >> > another computer, how can I access it (like getting it sent to me
> >> >> >> > or
> >> >> >> > something) without using those remote adminsrating programs??
>
> >> >> >> > The whole process should be done automatically without any
> >> >> >> > windows
> >> >> >> > or
> >> >> >> > pop ups...
>
> >> >> >> > How could that be achieved?
>
> >> >> >> > Thanks
>
> >> >> >> You could use the Task Scheduler on the other PC to invoke a
> >> >> >> command line mailer such as blat.exe to send the file to yourself.
> >> >> >> Post again if you need more details.
>
> >> >> > Yeah I'd like more details... thank you..
>
> >> >> Here is a typical batch file to mail a file:
>
> >> >> @ech off
> >> >> set Sender=te...@teddy.com
> >> >> set Receiver=te...@teddy.com
> >> >> set Subject=Teddy's Report %date%
> >> >> set smtp=smtp.teddy.com
>
> >> >> cd 2>"c:\Nullfile"
> >> >> blat.exe "c:\Nullfile" -to %Receiver% -subject "%Subject%" -f
> >> >> %Sender% -server %smtp% -attach "c:\test.xls"
>
> >> >> You can download blat from any number of sites. To send this file to
> >> >> yourself every day, invoke the above batch file with the Task
> >> >> Scheduler.
>
> >> > where shall i put the blat.exe file?
>
> >> If the dog wants a bone, give it a bone!
>
> >> @ech off
> >> set Sender=te...@teddy.com
> >> set Receiver=te...@teddy.com
> >> set Subject=Teddy's Report %date%
> >> set smtp=smtp.teddy.com
> >> set Account=te...@teddy.com
> >> set pw=teddy
>
> >> cd 2>"c:\Nullfile"
> >> c:\Tools\blat.exe "c:\Nullfile" -to %Receiver% -subject "%Subject%" -f
> >> %Sender% -server %smtp% -u %Account% -pw %pw% -attach "c:\test.xls"
>
> >> You can place blat.exe whereever you like, as long as
> >> you tell the batch file where to find it!
>
> > hmm, well I tried typing each line in the cmd.exe but then I reached
> > the cd 2>"c:\Nullfile" it said Access Denied, I tried to change the
> > directory and copy the blat files to the new directory but it didn't
> > work...
>
> It does not matter where that file resides - just select some
> location to which you have full access, and make sure it's
> the same in both places in the batch file.

Well okay, I've tried it again and it didn't work...

I download the blat files, they were 3 files, blat.exe, blat.dll,
blat.lib
I put the 3 files in the C directory, which I have access to it...
I put the file send.bat in the C and also test.txt which sould be sent
as an attachment...
I ran the cmd and I started the send.bat file and that's wot I got:

C:\>send.bat

C:\>set Sender=skyfalcont7@gmail.com

C:\>set Receiver=skyfalcont7@gmail.com

C:\>set Subject=Teddy's Report 08/01/2008

C:\>set smtp=smtp.googlemail.com

C:\>set Account=skyfalcont7@gmail.com

C:\>set pw=******

C:\>cd 2>"c:\"
The system cannot find the path specified.

C:\>c:\blat.exe "c:\" -to skyfalcont7@gmail.com -subject "Teddy's
Report 08/01/2
008" -f
Blat v2.6.2 w/GSS encryption (build : Feb 25 2007 12:06:19)

Blat saw and processed these options, and was confused by the last
one...
Report
Do not understand argument: Report

Win32 console utility to send mail via SMTP or post to usenet via NNTP
by
P.Mendes,M.Neal,G.Vollant,T.Charron,T.Musson,H.Pesonen,A.Donchey,C.Hyde
http://www.blat.net
syntax:
Blat <filename> -to <recipient> [optional switches (see below)]

Blat -SaveSettings -f <sender email addy> -server <server addr>
[-port <port>] [-try <try>] [-profile <profile>]
[-u <login id>] [-pwd <password>]
or
Blat -install <server addr> <sender's addr>
[<try>[<port>[<profile>]]] [-q]

Blat -profile [-delete | "<default>"] [profile1] [profileN] [-q]
Blat -h


C:\>skyfalcont7@gmail.com -server smtp.googlemail.com -u
skyfalcont7@gmail.com -
pw ****** -attach "c:\test.txt"
'skyfalcont7@gmail.com' is not recognized as an internal or external
command,
operable program or batch file.


So wot shall I do now? one another thing, the gmail smtp server needs
authentication enabled... is it enouhg to type in my email and
password only?

Thank you

Re: Auto Send by Teddy379

Teddy379
Tue Jan 08 05:25:35 PST 2008

On Jan 8, 12:37 am, "Pegasus \(MVP\)" <I....@fly.com.oz> wrote:
> "Teddy379" <teddy...@gmail.com> wrote in message
>
> news:226b27a3-56e6-4c03-be98-cc0fb942fc3e@m34g2000hsf.googlegroups.com...
>
>
>
> > On Jan 7, 11:54 pm, "Pegasus \(MVP\)" <I....@fly.com.oz> wrote:
> >> "Teddy379" <teddy...@gmail.com> wrote in message
>
> >>news:ab4568ef-7769-4812-8efb-4c3d4c53c1d7@d21g2000prf.googlegroups.com...
>
> >> > On Jan 7, 10:52 pm, "Pegasus \(MVP\)" <I....@fly.com.oz> wrote:
> >> >> "Teddy379" <teddy...@gmail.com> wrote in message
>
> >> >>news:d13edaf4-826a-4704-9570-441700380355@j20g2000hsi.googlegroups.com...
>
> >> >> > On Jan 7, 8:15 pm, "Pegasus \(MVP\)" <I....@fly.com.oz> wrote:
> >> >> >> "Teddy379" <teddy...@gmail.com> wrote in message
>
> >> >> >>news:71b124c4-b414-4ba7-8b04-aa85a9f858e3@c4g2000hsg.googlegroups.com...
>
> >> >> >> > Hello,
> >> >> >> > I have a file that I should be able to access every some days on
> >> >> >> > another computer, how can I access it (like getting it sent to me
> >> >> >> > or
> >> >> >> > something) without using those remote adminsrating programs??
>
> >> >> >> > The whole process should be done automatically without any
> >> >> >> > windows
> >> >> >> > or
> >> >> >> > pop ups...
>
> >> >> >> > How could that be achieved?
>
> >> >> >> > Thanks
>
> >> >> >> You could use the Task Scheduler on the other PC to invoke a
> >> >> >> command line mailer such as blat.exe to send the file to yourself.
> >> >> >> Post again if you need more details.
>
> >> >> > Yeah I'd like more details... thank you..
>
> >> >> Here is a typical batch file to mail a file:
>
> >> >> @ech off
> >> >> set Sender=te...@teddy.com
> >> >> set Receiver=te...@teddy.com
> >> >> set Subject=Teddy's Report %date%
> >> >> set smtp=smtp.teddy.com
>
> >> >> cd 2>"c:\Nullfile"
> >> >> blat.exe "c:\Nullfile" -to %Receiver% -subject "%Subject%" -f
> >> >> %Sender% -server %smtp% -attach "c:\test.xls"
>
> >> >> You can download blat from any number of sites. To send this file to
> >> >> yourself every day, invoke the above batch file with the Task
> >> >> Scheduler.
>
> >> > where shall i put the blat.exe file?
>
> >> If the dog wants a bone, give it a bone!
>
> >> @ech off
> >> set Sender=te...@teddy.com
> >> set Receiver=te...@teddy.com
> >> set Subject=Teddy's Report %date%
> >> set smtp=smtp.teddy.com
> >> set Account=te...@teddy.com
> >> set pw=teddy
>
> >> cd 2>"c:\Nullfile"
> >> c:\Tools\blat.exe "c:\Nullfile" -to %Receiver% -subject "%Subject%" -f
> >> %Sender% -server %smtp% -u %Account% -pw %pw% -attach "c:\test.xls"
>
> >> You can place blat.exe whereever you like, as long as
> >> you tell the batch file where to find it!
>
> > hmm, well I tried typing each line in the cmd.exe but then I reached
> > the cd 2>"c:\Nullfile" it said Access Denied, I tried to change the
> > directory and copy the blat files to the new directory but it didn't
> > work...
>
> It does not matter where that file resides - just select some
> location to which you have full access, and make sure it's
> the same in both places in the batch file.

Well okay, I've tried it again and it didn't work...

I download the blat files, they were 3 files, blat.exe, blat.dll,
blat.lib
I put the 3 files in the C directory, which I have access to it...
I put the file send.bat in the C and also test.txt which sould be sent
as an attachment...
I ran the cmd and I started the send.bat file and that's wot I got:

C:\>send.bat

C:\>set Sender=skyfalcont7@gmail.com

C:\>set Receiver=skyfalcont7@gmail.com

C:\>set Subject=Teddy's Report 08/01/2008

C:\>set smtp=smtp.googlemail.com

C:\>set Account=skyfalcont7@gmail.com

C:\>set pw=******

C:\>cd 2>"c:\"
The system cannot find the path specified.

C:\>c:\blat.exe "c:\" -to skyfalcont7@gmail.com -subject "Teddy's
Report 08/01/2
008" -f
Blat v2.6.2 w/GSS encryption (build : Feb 25 2007 12:06:19)

Blat saw and processed these options, and was confused by the last
one...
Report
Do not understand argument: Report

Win32 console utility to send mail via SMTP or post to usenet via NNTP
by
P.Mendes,M.Neal,G.Vollant,T.Charron,T.Musson,H.Pesonen,A.Donchey,C.Hyde
http://www.blat.net
syntax:
Blat <filename> -to <recipient> [optional switches (see below)]

Blat -SaveSettings -f <sender email addy> -server <server addr>
[-port <port>] [-try <try>] [-profile <profile>]
[-u <login id>] [-pwd <password>]
or
Blat -install <server addr> <sender's addr>
[<try>[<port>[<profile>]]] [-q]

Blat -profile [-delete | "<default>"] [profile1] [profileN] [-q]
Blat -h


C:\>skyfalcont7@gmail.com -server smtp.googlemail.com -u
skyfalcont7@gmail.com -
pw ****** -attach "c:\test.txt"
'skyfalcont7@gmail.com' is not recognized as an internal or external
command,
operable program or batch file.


So wot shall I do now? one another thing, the gmail smtp server needs
authentication enabled... is it enouhg to type in my email and
password only?

Thank you

Re: Auto Send by Teddy379

Teddy379
Tue Jan 08 05:25:56 PST 2008

On Jan 8, 12:37 am, "Pegasus \(MVP\)" <I....@fly.com.oz> wrote:
> "Teddy379" <teddy...@gmail.com> wrote in message
>
> news:226b27a3-56e6-4c03-be98-cc0fb942fc3e@m34g2000hsf.googlegroups.com...
>
>
>
> > On Jan 7, 11:54 pm, "Pegasus \(MVP\)" <I....@fly.com.oz> wrote:
> >> "Teddy379" <teddy...@gmail.com> wrote in message
>
> >>news:ab4568ef-7769-4812-8efb-4c3d4c53c1d7@d21g2000prf.googlegroups.com...
>
> >> > On Jan 7, 10:52 pm, "Pegasus \(MVP\)" <I....@fly.com.oz> wrote:
> >> >> "Teddy379" <teddy...@gmail.com> wrote in message
>
> >> >>news:d13edaf4-826a-4704-9570-441700380355@j20g2000hsi.googlegroups.com...
>
> >> >> > On Jan 7, 8:15 pm, "Pegasus \(MVP\)" <I....@fly.com.oz> wrote:
> >> >> >> "Teddy379" <teddy...@gmail.com> wrote in message
>
> >> >> >>news:71b124c4-b414-4ba7-8b04-aa85a9f858e3@c4g2000hsg.googlegroups.com...
>
> >> >> >> > Hello,
> >> >> >> > I have a file that I should be able to access every some days on
> >> >> >> > another computer, how can I access it (like getting it sent to me
> >> >> >> > or
> >> >> >> > something) without using those remote adminsrating programs??
>
> >> >> >> > The whole process should be done automatically without any
> >> >> >> > windows
> >> >> >> > or
> >> >> >> > pop ups...
>
> >> >> >> > How could that be achieved?
>
> >> >> >> > Thanks
>
> >> >> >> You could use the Task Scheduler on the other PC to invoke a
> >> >> >> command line mailer such as blat.exe to send the file to yourself.
> >> >> >> Post again if you need more details.
>
> >> >> > Yeah I'd like more details... thank you..
>
> >> >> Here is a typical batch file to mail a file:
>
> >> >> @ech off
> >> >> set Sender=te...@teddy.com
> >> >> set Receiver=te...@teddy.com
> >> >> set Subject=Teddy's Report %date%
> >> >> set smtp=smtp.teddy.com
>
> >> >> cd 2>"c:\Nullfile"
> >> >> blat.exe "c:\Nullfile" -to %Receiver% -subject "%Subject%" -f
> >> >> %Sender% -server %smtp% -attach "c:\test.xls"
>
> >> >> You can download blat from any number of sites. To send this file to
> >> >> yourself every day, invoke the above batch file with the Task
> >> >> Scheduler.
>
> >> > where shall i put the blat.exe file?
>
> >> If the dog wants a bone, give it a bone!
>
> >> @ech off
> >> set Sender=te...@teddy.com
> >> set Receiver=te...@teddy.com
> >> set Subject=Teddy's Report %date%
> >> set smtp=smtp.teddy.com
> >> set Account=te...@teddy.com
> >> set pw=teddy
>
> >> cd 2>"c:\Nullfile"
> >> c:\Tools\blat.exe "c:\Nullfile" -to %Receiver% -subject "%Subject%" -f
> >> %Sender% -server %smtp% -u %Account% -pw %pw% -attach "c:\test.xls"
>
> >> You can place blat.exe whereever you like, as long as
> >> you tell the batch file where to find it!
>
> > hmm, well I tried typing each line in the cmd.exe but then I reached
> > the cd 2>"c:\Nullfile" it said Access Denied, I tried to change the
> > directory and copy the blat files to the new directory but it didn't
> > work...
>
> It does not matter where that file resides - just select some
> location to which you have full access, and make sure it's
> the same in both places in the batch file.

Well okay, I've tried it again and it didn't work...

I download the blat files, they were 3 files, blat.exe, blat.dll,
blat.lib
I put the 3 files in the C directory, which I have access to it...
I put the file send.bat in the C and also test.txt which sould be sent
as an attachment...
I ran the cmd and I started the send.bat file and that's wot I got:

C:\>send.bat

C:\>set Sender=skyfalcont7@gmail.com

C:\>set Receiver=skyfalcont7@gmail.com

C:\>set Subject=Teddy's Report 08/01/2008

C:\>set smtp=smtp.googlemail.com

C:\>set Account=skyfalcont7@gmail.com

C:\>set pw=******

C:\>cd 2>"c:\"
The system cannot find the path specified.

C:\>c:\blat.exe "c:\" -to skyfalcont7@gmail.com -subject "Teddy's
Report 08/01/2
008" -f
Blat v2.6.2 w/GSS encryption (build : Feb 25 2007 12:06:19)

Blat saw and processed these options, and was confused by the last
one...
Report
Do not understand argument: Report

Win32 console utility to send mail via SMTP or post to usenet via NNTP
by
P.Mendes,M.Neal,G.Vollant,T.Charron,T.Musson,H.Pesonen,A.Donchey,C.Hyde
http://www.blat.net
syntax:
Blat <filename> -to <recipient> [optional switches (see below)]

Blat -SaveSettings -f <sender email addy> -server <server addr>
[-port <port>] [-try <try>] [-profile <profile>]
[-u <login id>] [-pwd <password>]
or
Blat -install <server addr> <sender's addr>
[<try>[<port>[<profile>]]] [-q]

Blat -profile [-delete | "<default>"] [profile1] [profileN] [-q]
Blat -h


C:\>skyfalcont7@gmail.com -server smtp.googlemail.com -u
skyfalcont7@gmail.com -
pw ****** -attach "c:\test.txt"
'skyfalcont7@gmail.com' is not recognized as an internal or external
command,
operable program or batch file.


So wot shall I do now? one another thing, the gmail smtp server needs
authentication enabled... is it enouhg to type in my email and
password only?

Thank you

Re: Auto Send by Pegasus

Pegasus
Wed Jan 09 05:04:09 PST 2008

*** See below.

"Teddy379" <teddy379@gmail.com> wrote in message
news:bea43d6a-816e-455f-bbcb-471a5b472ac0@j20g2000hsi.googlegroups.com...
> On Jan 8, 12:37 am, "Pegasus \(MVP\)" <I....@fly.com.oz> wrote:
>> "Teddy379" <teddy...@gmail.com> wrote in message
>>
>> news:226b27a3-56e6-4c03-be98-cc0fb942fc3e@m34g2000hsf.googlegroups.com...
>>
>>
>>
>> > On Jan 7, 11:54 pm, "Pegasus \(MVP\)" <I....@fly.com.oz> wrote:
>> >> "Teddy379" <teddy...@gmail.com> wrote in message
>>
>> >>news:ab4568ef-7769-4812-8efb-4c3d4c53c1d7@d21g2000prf.googlegroups.com...
>>
>> >> > On Jan 7, 10:52 pm, "Pegasus \(MVP\)" <I....@fly.com.oz> wrote:
>> >> >> "Teddy379" <teddy...@gmail.com> wrote in message
>>
>> >> >>news:d13edaf4-826a-4704-9570-441700380355@j20g2000hsi.googlegroups.com...
>>
>> >> >> > On Jan 7, 8:15 pm, "Pegasus \(MVP\)" <I....@fly.com.oz> wrote:
>> >> >> >> "Teddy379" <teddy...@gmail.com> wrote in message
>>
>> >> >> >>news:71b124c4-b414-4ba7-8b04-aa85a9f858e3@c4g2000hsg.googlegroups.com...
>>
>> >> >> >> > Hello,
>> >> >> >> > I have a file that I should be able to access every some days
>> >> >> >> > on
>> >> >> >> > another computer, how can I access it (like getting it sent to
>> >> >> >> > me
>> >> >> >> > or
>> >> >> >> > something) without using those remote adminsrating programs??
>>
>> >> >> >> > The whole process should be done automatically without any
>> >> >> >> > windows
>> >> >> >> > or
>> >> >> >> > pop ups...
>>
>> >> >> >> > How could that be achieved?
>>
>> >> >> >> > Thanks
>>
>> >> >> >> You could use the Task Scheduler on the other PC to invoke a
>> >> >> >> command line mailer such as blat.exe to send the file to
>> >> >> >> yourself.
>> >> >> >> Post again if you need more details.
>>
>> >> >> > Yeah I'd like more details... thank you..
>>
>> >> >> Here is a typical batch file to mail a file:
>>
>> >> >> @ech off
>> >> >> set Sender=te...@teddy.com
>> >> >> set Receiver=te...@teddy.com
>> >> >> set Subject=Teddy's Report %date%
>> >> >> set smtp=smtp.teddy.com
>>
>> >> >> cd 2>"c:\Nullfile"
>> >> >> blat.exe "c:\Nullfile" -to %Receiver% -subject "%Subject%" -f
>> >> >> %Sender% -server %smtp% -attach "c:\test.xls"
>>
>> >> >> You can download blat from any number of sites. To send this file
>> >> >> to
>> >> >> yourself every day, invoke the above batch file with the Task
>> >> >> Scheduler.
>>
>> >> > where shall i put the blat.exe file?
>>
>> >> If the dog wants a bone, give it a bone!
>>
>> >> @ech off
>> >> set Sender=te...@teddy.com
>> >> set Receiver=te...@teddy.com
>> >> set Subject=Teddy's Report %date%
>> >> set smtp=smtp.teddy.com
>> >> set Account=te...@teddy.com
>> >> set pw=teddy
>>
>> >> cd 2>"c:\Nullfile"
>> >> c:\Tools\blat.exe "c:\Nullfile" -to %Receiver% -subject "%Subject%" -f
>> >> %Sender% -server %smtp% -u %Account% -pw %pw% -attach "c:\test.xls"
>>
>> >> You can place blat.exe whereever you like, as long as
>> >> you tell the batch file where to find it!
>>
>> > hmm, well I tried typing each line in the cmd.exe but then I reached
>> > the cd 2>"c:\Nullfile" it said Access Denied, I tried to change the
>> > directory and copy the blat files to the new directory but it didn't
>> > work...
>>
>> It does not matter where that file resides - just select some
>> location to which you have full access, and make sure it's
>> the same in both places in the batch file.
>
> Well okay, I've tried it again and it didn't work...
>
> I download the blat files, they were 3 files, blat.exe, blat.dll,
> blat.lib

*** AFAIK, you only need blat.exe. However, having
*** the other files won't hurt.

> I put the 3 files in the C directory, which I have access to it...

*** What is this "C directory"? Please be specific!

> I put the file send.bat in the C and also test.txt which sould be sent
> as an attachment...
> I ran the cmd and I started the send.bat file and that's wot I got:
>
> C:\>send.bat
>
> C:\>set Sender=skyfalcont7@gmail.com
> C:\>set Receiver=skyfalcont7@gmail.com
> C:\>set Subject=Teddy's Report 08/01/2008
> C:\>set smtp=smtp.googlemail.com
> C:\>set Account=skyfalcont7@gmail.com
> C:\>set pw=******
> C:\>cd 2>"c:\"
> The system cannot find the path specified.

*** This is not surprising.- you forgot the file name! Having
*** all these files in the root directory of drive C: is not a good
*** idea. Put them into a folder "c:\SendMail" (for example),
*** then make this last instruction like so:
*** cd 2>c:\SendMail\NullFile.txt
*** The command then becomes
*** c:\SendMail\blat.exe c:\SendMail\NullFile.txt /.. /.. /..

> So wot shall I do now? one another thing, the gmail smtp server needs
> authentication enabled... is it enouhg to type in my email and
> password only?

*** You should check if you can send something to the gmail
*** smtp server while using Outlook or Outlook Express. If
*** you can do it there then you can do it with blat.exe.