As my current company not allow live messenger to be install in working box, so I have created this simple vb script to use live messenger, if you interested to do so, follow steps below 🙂
- Create an empty file with file extention .vbs (eg : msn.vbs)
- Open the file in notepad or any other text editor.
- Paste code below into the file.
- Save the file and double click to run
Set WshShell = CreateObject("WScript.Shell")
Set iexplore = CreateObject("InternetExplorer.Application")
iexplore.navigate "http://home.live.com/Handlers/WebIM.mvc"
iexplore.toolBar = false
iexplore.addressBar = false
iexplore.menuBar = false
iexplore.width = 600
iexplore.height = 750
iexplore.visible=true
*cool*