Option Explicit Dim WSHShell, n, MyBox, p, itemtype, Title Set WSHShell = WScript.CreateObject("WScript.Shell") p = "HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main\" p = p & "Show_StatusBar" itemtype = "REG_SZ" n = "yes" WSHShell.RegWrite p, n, itemtype Title = "The Status Bar in now enabled." & vbCR Title = Title & "You may need to Log off/Log on" & vbCR Title = Title & "For the change to take effect." MyBox = MsgBox(Title,4096,"Finished")