Shoutbox

MSN and Windows Messenger - Script to load and login? - Printable Version

-Shoutbox (https://shoutbox.menthix.net)
+-- Forum: MsgHelp Archive (/forumdisplay.php?fid=58)
+--- Forum: Skype & Technology (/forumdisplay.php?fid=9)
+---- Forum: Skype & Live Messenger (/forumdisplay.php?fid=10)
+----- Thread: MSN and Windows Messenger - Script to load and login? (/showthread.php?tid=39044)

MSN and Windows Messenger - Script to load and login? by Chris.1 on 02-23-2005 at 07:43 PM

I'm wondering if it i is possible to write a script of some form which will load MSN and Windows Messengers, and sign both programs into different user accounts automatically?

I don't want messenger loading at startup, but i would like to be able to run a program which will launch both programs when needed.

Does anyone know if this is possible? I thought about using the auto signin feature, but this will only work with one account afaik.

Hopefully someone will know something.


RE: MSN and Windows Messenger - Script to load and login? by Millenium_edition on 02-23-2005 at 07:47 PM

If you really want windows messenger, you can use gilly which almost has the same functions and can log you in with a shortcut to:

code:
"C:\Program Files\Gilly Messenger\GIlly Messenger.exe" me@hotmail.com mypassword
you can then use msn 6/7's autosignin to automaticly sign in to your account and gilly to sign in to another.

running two apps at the same time can be done using applications like AppLoader
RE: MSN and Windows Messenger - Script to load and login? by Chris.1 on 02-23-2005 at 08:57 PM

Cheers, Millenium_edition - Gilly Messenger works great!

Instead of using AppLoader, I simply wrote a small VB Script to run both programs at once:

code:
Set objShell = CreateObject("WScript.Shell")
objShell.Run "C:\PROGRA~1\GILLYM~1\GILLYM~1.exe user pass"
objShell.Run "C:\PROGRA~1\MSNMES~1\msnmsgr.exe"


Not sure if the coding of the VB Script is correct - this is the first script I've ever written, but it seems to work.

Thanks again!
RE: MSN and Windows Messenger - Script to load and login? by RaceProUK on 02-23-2005 at 11:56 PM

Looks good to me.


RE: MSN and Windows Messenger - Script to load and login? by lopardo on 02-24-2005 at 04:46 AM

The good thing about AppLoader is that it can take care of closing everything when you don't need them :)