QUOTE (LLXX @ Feb 12 2006, 06:19 PM)

That happens on my 98se system as well.
But that property sheet handler has been registered for *, so all files get scanned for properties. On my machine it's named {3EA48300-8CF6-101B-84FB-666CCB9BCD32}.
I was reading the thread through, as I have/had the same problem... long pauses when checking the properties of large files...
After a little research of my own, I found that it
wasn't...
[HKEY_CLASSES_ROOT\*\shellex\PropertySheetHandlers\
{3EA48300-8CF6-101B-84FB-666CCB9BCD32}]
@=""
that was causing the long pause...
instead, it
was...
[HKEY_CLASSES_ROOT\*\shellex\PropertySheetHandlers\
CryptoSignMenu]
@="
{7444C719-39BF-11D1-8CD9-00C04FC29D45}"
(which scans for Digital Signatures on
all files) that was causing the long pause.
After exporting and deleting that key, the long pauses were gone.
I then went through and added that entry to
just the File Types I thought would use Digital Signatures:
CODE
REGEDIT4
//The first entry deletes the CryptoSignMenu sub-key under the * key.
[-HKEY_CLASSES_ROOT\*\shellex\PropertySheetHandlers\CryptoSignMenu]
@="{7444C719-39BF-11D1-8CD9-00C04FC29D45}"
[HKEY_CLASSES_ROOT\dllfile\shellex\PropertySheetHandlers\CryptoSignMenu]
@="{7444C719-39BF-11D1-8CD9-00C04FC29D45}"
[HKEY_CLASSES_ROOT\exefile\shellex\PropertySheetHandlers\CryptoSignMenu]
@="{7444C719-39BF-11D1-8CD9-00C04FC29D45}"
[HKEY_CLASSES_ROOT\ocxfile\shellex\PropertySheetHandlers\CryptoSignMenu]
@="{7444C719-39BF-11D1-8CD9-00C04FC29D45}"
[HKEY_CLASSES_ROOT\vxdfile\shellex\PropertySheetHandlers\CryptoSignMenu]
@="{7444C719-39BF-11D1-8CD9-00C04FC29D45}"
[HKEY_CLASSES_ROOT\drvfile\shellex\PropertySheetHandlers\CryptoSignMenu]
@="{7444C719-39BF-11D1-8CD9-00C04FC29D45}"
[HKEY_CLASSES_ROOT\sysfile\shellex\PropertySheetHandlers\CryptoSignMenu]
@="{7444C719-39BF-11D1-8CD9-00C04FC29D45}"
[HKEY_CLASSES_ROOT\AXfile\shellex\PropertySheetHandlers\CryptoSignMenu]
@="{7444C719-39BF-11D1-8CD9-00C04FC29D45}"
Here's a zip of the Registry entries above if anyone is interested:
Click to view attachmentHope this helps anyone experiencing the problem

.
If anyone can add to the File Types that might use Digital Signatures... please add them to this thread.
Also, if any of these File Types aren't needed, please let me know.