Option Explicit

Dim WSHShell, n, p, itemtype

Set WSHShell = WScript.CreateObject("WScript.Shell")
p = "HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Toolbar\"
p = p & "LinksFolderName"
itemtype = "REG_SZ"
n = ""

WSHShell.RegWrite p, n, itemtype

MsgBox "Delete the Links folder from Favorites.",4096,"Finished!"