MSFN Forum: SP2.1a main updates slows down "Properties" - MSFN Forum

Jump to content



Page 1 of 1
  • You cannot start a new topic
  • You cannot reply to this topic

SP2.1a main updates slows down "Properties" Rate Topic: ***** 1 Votes

#1 User is offline   aurgathor 

  • Junior
  • Pip
  • Group: Members
  • Posts: 76
  • Joined: 24-January 06

Posted 12 February 2006 - 01:10 PM

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: 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!! :angry:


#2 User is offline   LLXX 

  • MSFN Junkie
  • PipPipPipPipPipPipPipPipPip
  • Group: Banned
  • Posts: 3,399
  • Joined: 04-December 05

Posted 12 February 2006 - 05:19 PM

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.

#3 User is offline   aurgathor 

  • Junior
  • Pip
  • Group: Members
  • Posts: 76
  • Joined: 24-January 06

Posted 14 February 2006 - 01:50 AM

Thanks, I just removed PropertySheetHandler, and that fixed it.

#4 User is offline   Fredledingue 

  • MSFN Expert
  • PipPipPipPipPipPip
  • Group: Members
  • Posts: 1,195
  • Joined: 10-February 05
  • OS:98SE
  • Country: Country Flag

Posted 14 February 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...

#5 User is offline   LLXX 

  • MSFN Junkie
  • PipPipPipPipPipPipPipPipPip
  • Group: Banned
  • Posts: 3,399
  • Joined: 04-December 05

Posted 14 February 2006 - 09:42 PM

View PostFredledingue, on Feb 14 2006, 03:14 PM, said:

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

#6 User is offline   whatever420 

  • MSFN Expert
  • PipPip
  • Group: Members
  • Posts: 109
  • Joined: 30-May 05
  • OS:98SE
  • Country: Country Flag

Posted 15 February 2006 - 03:53 PM

View PostLLXX, on Feb 12 2006, 06:19 PM, said:

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:

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: 119


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

This post has been edited by whatever420: 17 February 2006 - 01:47 AM


#7 User is offline   aurgathor 

  • Junior
  • Pip
  • Group: Members
  • Posts: 76
  • Joined: 24-January 06

Posted 17 February 2006 - 12:35 AM

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'. :)

Share this topic:


Page 1 of 1
  • You cannot start a new topic
  • You cannot reply to this topic

1 User(s) are reading this topic
0 members, 1 guests, 0 anonymous users



All trademarks mentioned on this page are the property of their respective owners
Copyright © 2001 - 2011 msfn.org
Privacy Policy