Skip to content

Instantly share code, notes, and snippets.

@RC1140
Created May 15, 2010 18:52
Show Gist options
  • Save RC1140/402341 to your computer and use it in GitHub Desktop.
Save RC1140/402341 to your computer and use it in GitHub Desktop.
[Reflection.Assembly]::LoadFile("c:\temp\agsXMPP.dll")
$clientConnection = new-object agsXMPP.XmppClientConnection
$clientConnection.Server = "gmail.com"
$clientConnection.ConnectServer = "talk.google.com"
$clientConnection.Open("EnterYourUserNameHere","EnterYourPasswordHere")
$message = new-object agsXMPP.protocol.client.Message("Who do you want to send the message to ","Errr is this thing on")
$clientConnection.Send($message)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment