Hi All
Here is a script to ping a blackberry to see if it is online. This is a good tool to use by helpdesk people.
first you will need to download SendEmail.exe from
Software :: SendEmail - Send email with this free command line email client and put it in a folder that is in your path.
here is the script very simple...
@Echo Off
REM This Will Ping the Desired Blackberry and sent the responce back to the senders mailbox
Echo "You need to make sure you have "SendMail.exe" in the root of c:\
ping 127.0.0.1 -n 5 > nul
set / usr=
set /p usr=Enter Users EMail Address:%=%
cls
sendemail -f %username%@enter company name here.com -t %usr% -u "<$Confirm,RemoveonDelivery> test" -m Do Not Reply -s enter snmp mail server here.com
Echo .
Echo .
Echo Sending Ping to %usr% please look in your EMail for verification.
ping -n 10 127.0.0.1 > nul
Exit