| View previous topic :: View next topic |
| Author |
Message |
BoBo Guest
|
Posted: Sun Jul 09, 2006 11:01 am Post subject: SendSMS [CMD] |
|
|
| Quote: | SendSMS is a small 32 bit command line utility which allows a SMS message to be sent to a mobile 'phone.
It was originally written as an add-on to an enterprise server monitoring system to provide SMS alerting in the event of networking or server problems. In order to be as resilient as possible, the message is sent via a local COM port (ie. dial-up modem) rather than through the Internet or over other network links (as these may be unavailable if there are LAN or WAN comms issues for instance)
[More...] |
|
|
| Back to top |
|
 |
Belial
Joined: 26 Jun 2005 Posts: 40 Location: Portugal
|
Posted: Fri Jul 14, 2006 6:48 pm Post subject: |
|
|
I have no idea what to write on the number for a non-UK based phone ...
My country number: +351 [Portugal]
My Number: 91XXXXXXX
I tried:
4435191XXXXXXX
4491XXXXXXX
+35191XXXXXXX
35191XXXXXXX
91XXXXXXX
WTF should I be writing? _________________ Belial |
|
| Back to top |
|
 |
BoBo Guest
|
Posted: Fri Jul 14, 2006 10:16 pm Post subject: |
|
|
If we take the SendSMS sample | Quote: | to send an alert to the UK mobile ‘phone 07775 1234:
eg. SendSMS 4477751234,Warning - Server volume \\JBF\Accounts free space critical! | Following that:
<CountryCode><DialPrefix><Number>
35191XXXXXXX
Plain guessing  |
|
| Back to top |
|
 |
mrclox
Joined: 12 Nov 2006 Posts: 29
|
Posted: Sat Jun 16, 2007 8:53 am Post subject: |
|
|
| Can someone show me the code i would need to send an sms using autohotkey script and this application, i am a bit confused |
|
| Back to top |
|
 |
engunneer
Joined: 30 Aug 2005 Posts: 8255 Location: Maywood, IL
|
Posted: Sat Jun 16, 2007 10:09 pm Post subject: |
|
|
*UNTESTED*
| Code: |
SendSMS = %A_ScriptDir%\SendSMS.exe
phonenumber = 123456789
message = Hey You!
run, %SendSMS% "%phonenumber%`,%message%"
|
you may have to play with , vs `,
It looks like it requires a modem? _________________
(Common Answers) |
|
| Back to top |
|
 |
BlackTooth Guest
|
Posted: Tue Jul 03, 2007 5:55 pm Post subject: |
|
|
you can use blat to send text messages using this: http://tinywords.com/mobile.html
you can use my smtp server (24.174.223.243). its kinda fast.
hope this helps |
|
| Back to top |
|
 |
Thalon
Joined: 12 Jul 2005 Posts: 633
|
Posted: Wed Jul 04, 2007 8:09 am Post subject: |
|
|
Seems not that easy to use: | Quote: | | In order to be as resilient as possible, the message is sent via a local COM port (ie. dial-up modem) rather than through the Internet or over other network links (as these may be unavailable if there are LAN or WAN comms issues for instance) | I do not have any connections at COM-port any more (had this kind of thing years ago).
But this "script" should work: | Code: | | Run SendSMS.exe 436641234567`,This is a test message to 0664 1234567 | (Aborted at opening Serial communication) _________________ AHK-Icon-Changer
AHK-IRC
deutsches Forum |
|
| Back to top |
|
 |
majkinetor
Joined: 24 May 2006 Posts: 4511 Location: Belgrade
|
Posted: Wed Jul 04, 2007 9:45 am Post subject: |
|
|
Great info. Thx. _________________
 |
|
| Back to top |
|
 |
|