Run Live mMessenger / MSN Without Installation

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 🙂

  1. Create an empty file with file extention .vbs (eg : msn.vbs)
  2. Open the file in notepad or any other text editor.
  3. Paste code below into the file.
  4. 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
 

dicksonkho

 

One thought on “Run Live mMessenger / MSN Without Installation

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.