marcs41,
Your suggestion on June 23: "C:\windows\system32\tourstart.exe is where the file is, just delete it." Will not work due to Windows File Protection.
Linney is suggesting deleting tour.exe in /Windows/Help/Tours/MM Tour/
My suggestion will not work with an existing user, as the registry key examined for a current vs. new user is different.
So, revision #3:
******** begin copy/paste below this line
'Version 1.2
Option Explicit
On Error Resume Next
Dim WSHShell, p, itemtype
Set WSHShell = WScript.CreateObject("WScript.Shell")
p = "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Applets\Tour\RunCount"
itemtype = "REG_DWORD"
WSHShell.RegWrite p, 0, itemtype
p = "HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Applets\Tour\RunCount"
itemtype = "REG_DWORD"
WSHShell.RegWrite p, 0, itemtype
Set WshShell = Nothing
********** end copy/paste above this line