set objShell = CreateObject("Shell.Application")
set objFolder2 = objShell.Namespace("C:\Documents and Settings\David Candy\Desktop\New Briefcase")
set objFolderItem = objFolder2.Self
set objItemVerbs = objFolderItem.Verbs
For i = 0 to objItemVerbs.count -1
A=objItemVerbs.item(i)
wscript.echo A & vbcrlf & i
' objItemVerbs.item(i).doit
Next
======================================
To use the code sunstitute below for above (which lists verbs)
======================================
For i = 0 to objItemVerbs.count -1
A=objItemVerbs.item(i)
If A = "&Update All" then
objItemVerbs.item(i).doit
Exit For
End If
Next
--
--------------------------------------------------------------------------------------------------
How to lose a war in Iraq
http://webdiary.com.au/cms/?q=node/1335#comment-48641
=================================================
"David Candy" <.> wrote in message It's not changeable via the registry.
This is an answer to a different question. But it can be adapted for this stupid question.