Well, there is this commercial 3rd party add-on for this:
http://www.nsoftware.com/powershell/netcmdlets/default.aspx
Another option could be whether you have access to an email-to-sms
service or gateway where you could easily use PowerShell to send an
email, then have that service take care of the SMS part of it.
Marco
--
WBR, Vadims Podans
PowerShell blog - www.sysadmins.lv
"Eero J" <Ee...@discussions.microsoft.com> rakstīja ziņojumā
"news:8A0741FF-9A02-4693...@microsoft.com"...
This works for me:
My cell phone is on AT&T and my smtp server is at comcast.net.
So, you need an SMTP server and you need to know the recipents
carrier.
Here is a link to many of the US carriers:
http://www.sms411.net/2006/07/how-to-send-email-to-phone.html
<-- Start Script ---------------------------------->
$sender = "m...@comcast.net"
$recipient = "21255...@txt.att.net"
$server = "smtp.comcast.net"
$subject = "Sending a File " + [System.DateTime]::Now
$body = "This is a test"
$msg = New-Object System.Net.Mail.MailMessage $sender, $recipient,
$subject, $body
$client = New-Object System.Net.Mail.SmtpClient $server
$client.Send($msg)
#<-----End Script ------>