IPB

Google Frontpage Forums Unattended CD/DVD Guide
 
Reply to this topicStart new topic
> SP2.1a main updates slows down "Properties"
aurgathor
post Feb 12 2006, 01:10 PM
Post #1


Newbie


Group: Members
Posts: 39
Joined: 24-January 06
Member No.: 86092
Country Flag


I'm working on setting up a Win98SE box, and noticed that getting "Properties" on big files was really slow, i.e., it would take almost 3 (!!) minutes realmad.gif on a 100 meg file. After going back with ghost images and some selective installs, I determined that the slow down happens after installing "Main Updates (All Updates and Hotfixes)".

Questions: does anyone know which particular update is causing this? Would it be possible to make that an optional install, or subsequently remove it?

The computer is a 200 MHz Cyrix w/128 meg of SDRAM and 6.4 Gig Bigfoot drive (I know it's sloOow). Getting the "Properties" of the same file before installing main updates takes only a couple of seconds. That means that something is now scans the whole file!! mad.gif
Go to the top of the page
 
+Quote Post
LLXX
post Feb 12 2006, 05:19 PM
Post #2


MSFN Junkie
*********

Group: Banned
Posts: 3482
Joined: 4-December 05
Member No.: 81511
OS: none
Country Flag


That happens on my 98se system as well.

It's just the property sheet handler scanning through the file looking for specific properties. E.g. some EXE files have a Version information tab in the property sheet.

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}.

Moving that one to only the EXE, DLL, and other files that can have extended properties would probably solve your problem.
Go to the top of the page
 
+Quote Post
aurgathor
post Feb 14 2006, 01:50 AM
Post #3


Newbie


Group: Members
Posts: 39
Joined: 24-January 06
Member No.: 86092
Country Flag


Thanks, I just removed PropertySheetHandler, and that fixed it.
Go to the top of the page
 
+Quote Post
Fredledingue
post Feb 14 2006, 03:14 PM
Post #4


Friend of MSFN
*****

Group: Members
Posts: 896
Joined: 10-February 05
Member No.: 43624
Country Flag


Wierd: I can take properties on 2 Gb files (avi) and it comes instantly. of course my machine is 10x faster than a 200mhz but still...
Go to the top of the page
 
+Quote Post
LLXX
post Feb 14 2006, 09:42 PM
Post #5


MSFN Junkie
*********

Group: Banned
Posts: 3482
Joined: 4-December 05
Member No.: 81511
OS: none
Country Flag


QUOTE (Fredledingue @ Feb 14 2006, 03:14 PM) *
Wierd: I can take properties on 2 Gb files (avi) and it comes instantly. of course my machine is 10x faster than a 200mhz but still...
That means that you probably don't have the property sheet handler installed for *.
Go to the top of the page
 
+Quote Post
whatever420
post Feb 15 2006, 03:53 PM
Post #6


MSFN Expert


Group: Members
Posts: 48
Joined: 30-May 05
Member No.: 58269
OS: 98SE
Country Flag


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:

Attached File  CryptoSignMenu_delete_add.zip ( 324bytes ) Number of downloads: 117



Hope this helps anyone experiencing the problem smile.gif.

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.

This post has been edited by whatever420: Feb 17 2006, 01:47 AM
Go to the top of the page
 
+Quote Post
aurgathor
post Feb 17 2006, 12:35 AM
Post #7


Newbie


Group: Members
Posts: 39
Joined: 24-January 06
Member No.: 86092
Country Flag


Thanks for the investigation, I guess I need to revisit my current solution. I'm not sure ifWin98 has it, but .sec also signed with digital certificates, especially since the extension is derived from 'secure'. smile.gif
Go to the top of the page
 
+Quote Post

Google Frontpage Forums Unattended CD/DVD Guide

Reply to this topicStart new topic
1 User(s) are reading this topic (1 Guests and 0 Anonymous Users)
0 Members:

 



Lo-Fi Version Time is now: 2nd December 2008 - 09:16 PM
All trademarks mentioned on this page are the property of their respective owners
MSFN is not affiliated with Microsoft
Copyright © 2001-2008 msfn.org
Privacy Policy