Hey there, seeing as its for a good cause I created a program that will do what you need it to
This will run messenger and enter the email address and password shown in the runtime arguements into messenger, all the user will need to do is click the sign in button
Source (VB6):
code:
Public WithEvents msn As MessengerAPI.Messenger
Private Sub Form_Load()
Set msn = New MessengerAPI.Messenger
Dim msnWnd As MessengerAPI.IMessengerWindow
Set msnWnd = msn.Window
foo = Split(Command, " ")
msn.Signin msnWnd.hWnd, foo(0), foo(1)
End
End Sub
Used By:
quote:
RunMsgr.exe email password
for example
quote:
RunMsgr.exe email@hotmail.com pass123
Hope this has proved to be of some help
A compiled version of it is included in the zip file, I have also provided the visual basic source code.