![]() |
|
Welcome to Vista Banter. You are currently viewing our boards as a guest which gives you limited access to view most discussions, articles and access our other FREE features. By joining our free community you will have access to ask questions and reply to others posts, upload your own photos and access many other special features. Registration is fast, simple and absolutely free so please, join our community today! If you have any problems with the registration process or your account login, please contact contact support. |
|
|||||||
| Performance and Maintainance of Windows Vista A forum for performance and maintenance tasks in Windows Vista. (microsoft.public.windows.vista.performance_maintainance) |
|
|
LinkBack | Thread Tools | Display Modes |
|
|||
|
On Fri, 26 Sep 2008 10:27:21 -0500, Paul Montgomery
wrote: There were so many total options that it didn't even occur to me to try to check each one. And I wasn't about to let it do its thing, even though I have multiple backups (images AND clones) that are never more than 12 hours old. Not "options"... items that needed to be "cleaned". |
|
|||
|
I highly use lots of different registry cleaners, and im recently using, uniblue powersuite, registry mechanic, registry first aid platinum, registry repair, registry easy, registry genius, registry fix, ccleaner. And it affects my whole system performance up to 300% more -- flamingatom |
|
|||
|
On Mon, 29 Sep 2008 23:24:45 -0500, flamingatom
wrote: I highly use lots of different registry cleaners, and im recently using, uniblue powersuite, registry mechanic, registry first aid platinum, registry repair, registry easy, registry genius, registry fix, ccleaner. And it affects my whole system performance up to 300% more Change your nick to "flamingidiot". |
|
|||
|
I've tried *'digeus registry cleaner' (http://www.digeus.com)* on Vista x32. Can't compare with any other cleaners, cause there are not so many of them whitch support Vista, but this was quite nice. -- winkygiser |
|
|||
|
flamingatom wrote:
I highly use lots of different registry cleaners, and im recently using, uniblue powersuite, registry mechanic, registry first aid platinum, registry repair, registry easy, registry genius, registry fix, ccleaner. And it affects my whole system performance up to 300% more What benchmarking utility did you use to verify this monumental performance gain? Please provide the before and after longs so others can verify your claimed results. Or did you instead use an independent testing laboratory to establish the "300%" figure? No intelligent individual capable of critical thinking, much less any experienced computer professional, is going to believe your claims until you can offer objective evidence in support thereof. -- Bruce Chambers Help us help you: http://www.catb.org/~esr/faqs/smart-questions.html http://support.microsoft.com/default.aspx/kb/555375 They that can give up essential liberty to obtain a little temporary safety deserve neither liberty nor safety. ~Benjamin Franklin Many people would rather die than think; in fact, most do. ~Bertrand Russell The philosopher has never killed any priests, whereas the priest has killed a great many philosophers. ~ Denis Diderot |
|
|||
|
hi all. long time listener... actually, just breezing through and had to stop, register, and say *something* about the madness here. ![]() i'm a developer with ~15 years experience writing code for (mostly) windows. i currently run a team of guys that develops laboratory applications using c# (.net). there seems to be a culture of fear around registry tools. this is not entirely unhealthy, especially considering some of the horror stories we've all heard, but there are some valid reasons why keeping your registry maintained is good for system performance. these tools are certainly not for the faint of heart, nor the technically challenged. i also can't speak as to the logic (or lack thereof) used by any particular tool - as i haven't reviewed any source code. in fact, i came upon this because i am looking for a tool that i might have some faith in - we'll see. anyway, my opinion here is more philosophical, with a technical slant. the windows registry is a database. it is a tree structured container for simple data types, many of which are cross-references to other locations in the tree. others are pointers to file locations and other resources, and the remainder are basically configuration parameters... relationships/pointers are unenforced - meaning that a target can disappear, change, or move, and there is nothing to guarantee the pointer will be updated - that only happens if the software (or person) doing the modification is particularly conscientious. inconsistencies are common and quite problematic with databases, even those used only by a single application that follows consistent rules - stuff happens and data does get corrupted. the registry, though, is *not* a single-application database. it's highly shared, allowing unrestricted read/write access from multiple consumers (all the software which has installed itself on your machine, and any running application or service). this is bad news, and the inconsistencies pile up pretty quickly. why are inconsistencies bad? they can cause error conditions for any application (including windows and subsystems) that attempt to enumerate or access affected key(s). application errors usually have associated exception handlers -- extra code which has to run, and either workaround the problem or somehow log/notify, then continue. if the application doesn't have a handler, it will probably cause the OS to have to deal with a terminating app... in any case, exceptions slow software down. now, all that said, just removing a bad reference (even cascading this operation, by running a cleaner multiple times as suggested by someone earlier) doesn't necessarily fix a problem. it might, as many applications will ignore or recreate missing keys, or even notify the user that a reinstall/repair is needed. some, however, won't. and may still have problems - but probably nothing worse than you already had. in my experience as a windows user, and from the perspective of someone who's had to write exception logic, a missing reference is better than an inconsistent one. HTH --ian -- hypsophrys Posted via http://www.vistaheads.com |
|
|||
|
On Mon, 12 Jan 2009 04:34:08 +0000, hypsophrys
wrote: hi all. long time listener... actually, just breezing through and had to stop, register, and say *something* about the madness here. ![]() i'm a developer with ~15 years experience writing code for (mostly) windows. i currently run a team of guys that develops laboratory applications using c# (.net). there seems to be a culture of fear around registry tools. this is not entirely unhealthy, especially considering some of the horror stories we've all heard, but there are some valid reasons why keeping your registry maintained is good for system performance. these tools are certainly not for the faint of heart, nor the technically challenged. i also can't speak as to the logic (or lack thereof) used by any particular tool - as i haven't reviewed any source code. in fact, i came upon this because i am looking for a tool that i might have some faith in - we'll see. anyway, my opinion here is more philosophical, with a technical slant. Philosophy and technical matters do not a good mix make. Plain and simple: you will NEVER find any reputable stats/benchmarks to support the claim that the use of a registry cleaner will improve a system's performance. That class of utilities MAY have worked as claimed way back in the early days of computing - like in the 386 or maybe the 486 days, but not today. PJ White |
|
|||
|
hypsophrys wrote:
hi all. long time listener... actually, just breezing through and had to stop, register, and say *something* about the madness here. ![]() i'm a developer with ~15 years experience writing code for (mostly) windows. i currently run a team of guys that develops laboratory applications using c# (.net). there seems to be a culture of fear around registry tools. If only that were true. Instead, all too many naive users fall for the blandishments of snake oil salesmen and use automated registry cleaners to hose their systems. -- Bruce Chambers Help us help you: http://www.catb.org/~esr/faqs/smart-questions.html http://support.microsoft.com/default.aspx/kb/555375 They that can give up essential liberty to obtain a little temporary safety deserve neither liberty nor safety. ~Benjamin Franklin Many people would rather die than think; in fact, most do. ~Bertrand Russell The philosopher has never killed any priests, whereas the priest has killed a great many philosophers. ~ Denis Diderot |