Windows stop msn from starting in registry...

Discussion in 'Software' started by keef247, 6 Jun 2007.

  1. keef247

    keef247 Modder

    Joined:
    11 Aug 2006
    Posts:
    1,619
    Likes Received:
    244
    msn registry key to block msn from opening.link?
    i need a code to put in a text file to make it a registry key to stop msn from starting.the same as you can get for windows messenger?
    help please!
     
  2. cannon

    cannon What's a Dremel?

    Joined:
    15 Jan 2004
    Posts:
    179
    Likes Received:
    0
    why dont you stop it under startup in msconfig?
     
  3. quack

    quack Minimodder

    Joined:
    6 Mar 2002
    Posts:
    5,240
    Likes Received:
    9
    There are 2 ways to do this,

    1) Using a .bat/.cmd file.

    Code:
    REG DELETE "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run" /v msnmsgr /f
    
    2) Use a .reg file.

    Code:
    Windows Registry Editor Version 5.00
    
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run]
    "msnmsgr"=-
    
    You will have to remove the extra spaces inserted in the word "Current" by the forum software.
     
Tags:

Share This Page