'Rename the Recycle Bin

Dim WshShell, ObjShell, j, p1, m, pm, Message  

Set WshShell = WScript.CreateObject("WScript.Shell")
If WScript.Arguments.length = 0 Then
Set ObjShell = CreateObject("Shell.Application")
ObjShell.ShellExecute "wscript.exe", """" & _
WScript.ScriptFullName & """" & " uac","", "runas", 1
Else
Message = "This script will Rename the Recycle Bin." & vbCr & vbCr _
 & "Would you like to continue?"

X = MsgBox(Message, vbYesNo + vbInformation, "Paul's XP and Vista Tweaks")
If X = 6 Then 

p1 = "HKCR\CLSID\{645FF040-5081-101B-9F08-00AA002F954E}\"

m = WshShell.RegRead(p1 & "LocalizedString")
j = "Change the Name of The Recycle Bin"
pm = InputBox("Type in the name to replace The Recycle Bin.", j, m)
If pm <> "" Then
WshShell.RegWrite p1 & "LocalizedString", pm

Message = "Recycle Bin has been Renamed!" & vbCr & vbCr _
 & "This script was downloaded from www.paulsxp.com." 
MsgBox Message, 64, "Paul's XP and Vista Tweaks"
End If
End If
End If