Easily Repair a Corrupt Internet Connection

Posted on September 15, 2006
Filed Under How To, Networking, Software, Tools, Windows | 9 Comments

Have you ever come across a computer that wouldn’t connect to the Internet after removing spyware or other network related software? Or maybe you can connect, but you can only visit certain sites while others time out. This problem is associated with winsock corruption in Windows XP. At this point most people reload the machine. Now you don’t have to. This utility has helped me a countless number of times so I would like to share it with you.


WinSock XP Fix is a utility that repairs winsock corruption in Windows XP. The utility is very easy to use. When you first run it, you will be asked to create a registry backup of your current registry settings. This is in case something goes wrong and you need to restore your registry. After this you will be prompted to apply the winsock fix. Once the fix has been applied, you can restart your computer. After the computer restarts, the connection will be repaired.

Share and Enjoy:
  • del.icio.us
  • StumbleUpon
  • Digg
  • Twitter
  • Facebook
  • Google Bookmarks
  • email
  • Print
If you enjoyed this post, make sure you subscribe to my RSS feed!


Other Posts You Might Like:

Comments

9 Responses to “Easily Repair a Corrupt Internet Connection”

  1. cw on August 7th, 2007 6:01 am

    in XP/2003 you can also do this from the command-line

    “netsh int ip reset c:\resetlog.txt”

    documented here: http://support.microsoft.com/kb/299357

    thanks

    Reply

  2. nostrals on February 1st, 2009 6:37 pm

    If your looking for a program to run the “netsh int ip reset” command automatically in the background.
    Then download my Auto Repair Network Connection from megaupload.com/?d=HJDU7Y9M
    100% Genuine
    Enjoy!

    Reply

  3. realdeal on September 15th, 2009 9:05 pm

    The website in the above post popped up as a virus (trojan) in Avast:
    megaupload.com/?d=HJDU7Y9M

    Reply

  4. nostralz on May 13th, 2010 7:57 am

    the download from megaupload.com/?d=HJDU7Y9M is not a virus, avast shows the virus warning because it was scripted using vbscript, by default many anti-virus programs will alert due to the nature of the scripting language. all it does is send reset commands to netsh.exe every 60 seconds in the background

    Reply

  5. Nostralz on May 14th, 2010 1:10 pm

    Here is the original script used to create the application from megaupload.com/?d=HJDU7Y9M
    I have posted the code because the application was being reported as a virus.
    I know it was never a virus and hope you accept my apologies.

    Nostrals :o )

    copy and paste the following into notepad and save as Auto Repair Network Connection.vbs

    MsgBox(“This application is provided without any warranty, either expressed or implied. * You run this application at your own risk! *”)
    vB = MsgBox(“You are about to run ipconfig /renew (once) & then netsh int ip reset vLog.log (every 60 second’s) in the background”,1)
    Dim vS , vF
    Set vS = WScript.CreateObject(“WScript.Shell”)
    Set vF = CreateObject(“Scripting.FileSystemObject”)
    If vB 1 Then
    Set vF = Nothing
    Set vS = Nothing
    WScript.Quit(0)
    Else
    vS.Run “%Comspec% /c ipconfig /renew”, 0
    WScript.Sleep 3000
    Do
    vS.Run “%Comspec% /c netsh int ip reset vLog.log”, 0
    WScript.Sleep 60000
    If vF.FileExists(“vLog.log”) then
    vF.DeleteFile “vLog.log”
    End if
    Loop
    end if

    Reply

  6. nostrals on May 14th, 2010 2:15 pm

    heres a cut down version

    Dim vS , vF
    Set vS = WScript.CreateObject(“WScript.Shell”)
    Set vF = CreateObject(“Scripting.FileSystemObject”)
    vS.Run “%Comspec% /c ipconfig /renew”, 0
    WScript.Sleep 3000
    Do
    vS.Run “%Comspec% /c netsh int ip reset vLog.log”, 0
    WScript.Sleep 60000
    If vF.FileExists(“vLog.log”) then
    vF.DeleteFile “vLog.log”
    End if
    end if

    Reply

  7. nostrals on May 14th, 2010 2:16 pm

    heres a cut down version

    Dim vS , vF
    Set vS = WScript.CreateObject(“WScript.Shell”)
    Set vF = CreateObject(“Scripting.FileSystemObject”)
    vS.Run “%Comspec% /c ipconfig /renew”, 0
    WScript.Sleep 3000
    Do
    vS.Run “%Comspec% /c netsh int ip reset vLog.log”, 0
    WScript.Sleep 60000
    If vF.FileExists(“vLog.log”) then
    vF.DeleteFile “vLog.log”
    End if

    Reply

  8. TheGift73 on May 26th, 2010 6:11 pm

    Nice script.
    On a separate point, is this site still going as it is a great place for useful articles.

    Reply

    Casey Reply:

    Hi TheGift73,

    I’m glad you like my blog. I’m currently on hiatus because I started a computer consulting business, however, I hope to start it back up again soon. So, keep checking back or sign up for the feed.

    Thanks!
    Casey

    Reply

Leave a Reply