Dim myShell, OE_ID, OE_ID2, OE_SP_Key, p1, cn, n, t, itemtype 

Set myShell = CreateObject("WScript.Shell")

On Error Resume Next
OE_ID = "HKEY_CURRENT_USER\Identities\Default User ID"
OE_ID2 = myShell.RegRead(OE_ID)
OE_SP_Key = "HKEY_CURRENT_USER\Identities\" & OE_ID2 & "\Software\Microsoft\Outlook Express\5.0\NoSplash"

p1="HKEY_CURRENT_USER\Identities\" & OE_ID2 & "\Software\Microsoft\Outlook Express\5.0\NoSplash"

itemtype = "REG_DWORD"
n = "0"
myShell.RegWrite p1, n, itemtype


MsgBox "OE Splash Screen has been enabled.", 4096,"Finished"

VisitMarv's Windows Tips & Tricks

Sub VisitMarv's Windows Tips & Tricks
	If MsgBox("This script came from Marv's Windows Tips & Tricks" & vbCRLF & vbCRLF & "Would you like to visit Marv's Web Site now?", vbQuestion + vbYesNo + vbDefaultButton, "Visit Marv's Windows Tips & Tricks") =6 Then
		myshell.Run "http://www.marvswindowstips.com"
	End If
End Sub


