Recommended Posts

i tell you what, i thought i'd never say it but if the next version of windows is any worse, i'm moving to mac. it's all very well having embedded parts of the operating system which cannot be changed, but the search in vista is so badly implemented, like the previews load up the entire application and leave it lingering in memory etc, copernic has a much neater solution of a cut down preview (for example).

In what way do you feel that it's "sloppy"?

resource usage during indexing, why there needs to be so many processes involved in indexing is beyond me - just smells like a poor design. the number of built in filters for non-ms file formats is poor, indexing of email is poor - needs to have outlook open, no built in support for 3rd party email clients/browser and office suites, the preview of search results requires (in many cases) to have the application installed as the preview is rendered by the application itself (and subsequently the time taken to render the preview is high and sometimes the application used to render it lingers in memory), no fine controls over indexing, such as the amount of document to index - this is set as an arbitrary amount by MS and cannot be altered to a larger size.

They probably caved in light of the risk of having to suffer from yet another anti-trust lawsuit...if Google did get them proven guilty, then they would probably find a way to twist it and call it a violatation of the prior anti-trust ruling in some way or another, and consequently, spell some deep **** for Microsoft. And, as much as I'd like to think they can stand up and maintain the status quo with all their money, it'd probably be a hell of a lot more trouble than they need.

My two cents, anyways.

And this is the main reason why searching in XP was a waste of time and an utter joke. You couldn't find anything, Vista's search actually works.

Um, I guess you mean the default file search that comes with the base XP install? Note that the same MS desktop search you love in vista is available as a free download on the MS site for XP. So you can have it for both. I agree with you that once you use desktop search, you'll never go back.

, indexing of email is poor - needs to have outlook open

Just an FYI that this appears to be no longer the case. As far as I can tell, now you can open outlook once and then the indexer in the Vista version will add it to your list of search places, and then indexes it (and archive.pst if you have it open that one time). I tested it with a million+ email file and it seems to have gotten everything, even with Outlook closed now.

Um, I guess you mean the default file search that comes with the base XP install? Note that the same MS desktop search you love in vista is available as a free download on the MS site for XP. So you can have it for both. I agree with you that once you use desktop search, you'll never go back.

Just an FYI that this appears to be no longer the case. As far as I can tell, now you can open outlook once and then the indexer in the Vista version will add it to your list of search places, and then indexes it (and archive.pst if you have it open that one time). I tested it with a million+ email file and it seems to have gotten everything, even with Outlook closed now.

i think it only works like that if you have outlook 2007, not 2003 (or older)

OSX isn't a monopoly. People F*** with MS because they have a monopoly on operating systems. Isn't it some crazy number like 90%? Because MS can easily crush software companies like a bug if they do something. (for example a blanket ban on anything Google, including the website)

Apple and Linux don't have a monopoly since they're not installed on the vast majority of computers world wide. I don't think you could ever actually accuse Linux itself of being a monopoly, since its up to distributors to decide what packages to include. But it wouldn't surprise me if Linux allows you to change search already.

As for Apple.. well.. they don't need to, but I think they should to show that they're interested in being a good guy.

If the Wiki definition of Monopoly is correct, Microsoft doesn't have a monopoly.

Decisions like that shouldn't last for 7 years. A lot can change.

Um it took like 7 years to be adjudicated, covering more than 7 years of prior criminal activity, and NOTHING in the marketplace has changed. In fact, if anything Microsoft has a worse monopoly, and is wielding it heavy-handedly, re: the ludicrous pricing model, and absurdly arbitrary segmentation of Vista. :)

windows vs linux isn't a monopoly it's more a question of simplicity vs complexity. Apple and their OS have no real point in the same arguement. despite them changing to x86/x64 hardware they chopped there legs off since day one only allowing their OS on only their hardware, maybe if things change like with safari but i doubt it.

resource usage during indexing,

It's far less than competing indexing engines (ie. Google who doesn't even back-off on user activity, CPU, or use background I/O).

why there needs to be so many processes involved in indexing is beyond me - just smells like a poor design.

Huh? I assume you're referring to the process isolation between the indexer, protocol host, and filter host. How does that "smell of poor design?" It's done that way for very, very good reasons. Doing it all in one or two processes would be a poor design.

SearchIndexer.exe runs as a system service. It's responsible for servicing queries and maintaining the index, and also contains the crawler.

SearchProtocolHost.exe is a sandboxed process that hosts the protocol handler for crawling a specific store (like the filesystem, or Outlook). It needs to be a seperate process because it sometimes needs to run with different credentials. For example, the SearchIndexer process, running under the SYSTEM account, cannot access your Outlook e-mail. So an instance of SearchProtocolHost runs in the context of the user in order to index that content.

It's also seperate because it hosts third-party code (like the Thunderbird protocol handler) which may not be trusted or reliable. So if that third-party code crashes, just the protocol host crashes - not the whole indexer. So the risk of index corruption is reduced, and queries can always be serviced.

SearchFilterHost.exe hosts the actual IFilters. This process is spawned by the ProtocolHost and is extremely tightly locked down. For example, it cannot even read the filesystem. It runs in Low IL (just like Protected Mode IE). Why is this important? Well think back to the WMF file vulnerability a year or so ago. Google Desktop Search would trigger the vulnerability whenever it indexed one of those such files. If you received it as an e-mail attachment, you would have a 0-click attack because they don't sandbox the indexing process. This wasn't a problem for WDS users because we have always isolated filtering to a seperate locked-down process.

Do you still think there are too many processes?

the number of built in filters for non-ms file formats is poor

Any examples? There are hundreds of supported file formats out-of-the-box, and many add-ins for obscure formats as well since WDS uses the same IFilter interface as the old Indexing Service and SharePoint.

indexing of email is poor - needs to have outlook open

Most search tools require this, as (like WDS) they don't actually index PST or OST files. They index via MAPI, which requires that Outlook be running. If it weren't running, you wouldn't be able to index in non-cached mode, and how would you get the user's credentials to access their mail accounts or PSTs?

no built in support for 3rd party email clients/browser and office suites

There's no built-in support for any of those, except that any e-mail client which uses MAPI (such as Outlook) is supported. Or mail clients that write their messages to the disk like Windows Mail / WLM. If there were built-in support for one client, other companies would complain that they weren't included. Fortunately, there are add-ins to support Thunderbird, Lotus, etc.

the preview of search results requires (in many cases) to have the application installed as the preview is rendered by the application itself (and subsequently the time taken to render the preview is high and sometimes the application used to render it lingers in memory)

That's completely untrue. The application is never used to generate the previews in Windows Vista. The previewers are implementations of IPreviewHandler and are hosted in the sandboxed prevhost.exe process. They are expected to be provided by the owner of the file format (ie. Adobe).

no fine controls over indexing, such as the amount of document to index - this is set as an arbitrary amount by MS and cannot be altered to a larger size.

What do you mean? All of the textual content of the document is indexed (there are of course theoretical limits, but you're never going to hit them).

Microsoft was determined to be a monopoly because of all the integration and bundling it did with its operating system. It was the correct decision, but that doesn't mean Apple isn't a monopoly as well. Apple is just as much as a monopoly if you look at the Microsoft case and you still consider Microsoft a monopoly.

The largest complaint levied against Microsoft was that many of its products were being unfairly bundled into Windows, putting its competitors at a disadvantage. It was primarily the browser issue, with Internet Explorer being integrated seamlessly into Windows Explorer. This is no longer the case as Windows Explorer and Internet Explorer are completely separate.

Microsoft has appeased the court's ruling by breaking up how it does business. I don't think it's fair to call them a monopoly anymore. If it is, then how can the same not be said about Apple? Having Safari, iTunes and all the other iApps installed? How is that not a monopoly if Microsoft having its software preinstalled is a monopoly? Microsoft's products can now all be uninstalled if you don't wish to use them with Windows anymore. That used to be impossible.

Being the overwhelming leader in a field DOES NOT make you a monopoly (legally), so some of you really need to stop implying as much. When you use unfair business practices to create a stranglehold on an industry, that's another matter entirely. Yes, being a major leader in a field by an outstanding amount contributes to being a monopoly, but it is not the sole prerequisite.

This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.
  • Posts

    • BleachBit 6.0.1 Beta by Razvan Serea When your computer is getting full, BleachBit quickly frees disk space. When your information is only your business, BleachBit guards your privacy. With BleachBit you can free cache, delete cookies, clear Internet history, shred temporary files, delete logs, and discard junk you didn't know was there. Designed for Linux and Windows systems, it wipes clean thousands of applications including Firefox, Microsoft Edge, Google Chrome, Opera, Safari, and more. Beyond simply deleting files, BleachBit includes advanced features such as shredding files to prevent recovery, wiping free disk space to hide traces of files deleted by other applications, and vacuuming Firefox to make it faster. Better than free, BleachBit is open source. BleachBit has many useful features: Delete your private files so completely that "even God can't read them" according to South Carolina Representative Trey Gowdy. Simple operation: read the descriptions, check the boxes you want, click preview, and click delete. Multi-platform: Linux and Windows Free of charge and no money trail Free to share, learn, and modify (open source) No adware, spyware, malware, browser toolbars, or "value-added software" Translated to 64 languages besides American English Shred files to hide their contents and prevent data recovery Shred any file (such as a spreadsheet on your desktop) Overwrite free disk space to hide previously deleted files Portable app for Windows: run without installation Command line interface for scripting and automation CleanerML allows anyone to write a new cleaner using XML Automatically import and update winapp2.ini cleaner files (a separate download) giving Windows users access to 2500+ additional cleaners Frequent software updates with new features Going beyond standard deletion of files, BleachBit has several advanced cleaners: Clear the memory and swap on Linux Delete broken shortcuts on Linux Delete the Firefox URL history without deleting the whole file—with optional shredding Delete Linux localizations: delete languages you don't use. More powerful than localepurge and available on more Linux distributions. Clean APT for Debian, Ubuntu, Kubuntu, Xubuntu, and Linux Mint Find widely-scattered junk such as Thumbs.db and .DS_Store files. Execute yum clean for CentOS, Fedora, and Red Hat to remove cached package data Delete Windows registry keys—often where MRU (most recently used) lists are stored Delete the OpenOffice.org recent documents list without deleting the whole Common.xcu file Overwrite free disk space to hide previously files Vacuum Firefox, Google Chrome, Liferea, Thunderbird, and Yum databases: shrink files without removing data to save space and improve speed Surgically remove private information from .ini and JSON configuration files and SQLite3 databases without deleting the whole file Overwrite data in SQLite3 before deleting it to prevent recovery (optional) BleachBit 6.0.1 Beta release notes: BleachBit 6.0.1 beta is now available for testing. This maintenance-focused release includes bug fixes, updated translations, and a range of safe enhancements. This release fixes a Windows security issue that could allow arbitrary file deletion during privileged cleaning (reported by Zeze with TeamT5). It also adds new cleaners (including a DNS cache cleaner, Claude Code, and Visual Studio Code forks), support for multiple Chrome and Edge profiles, new deep scan options for developer directories like node_modules and venv, and safer, faster file shredding. All Platforms Added cleaners for Claude Code, DNS cache, and many Visual Studio Code forks. Added support for multiple Chrome and Edge profiles. Chrome can now clean downloaded AI models. Deep Scan can optionally remove venv, __pycache__, node_modules, and .angular directories. Deep Scan is faster by skipping directories on the keep list. File shredding is safer, faster, and leaves fewer recoverable traces. Improved handling of cookies, symlinks, Unicode filenames, external processes, and configuration files. Improved Expert Mode warnings and long warning dialogs. Fixed crashes related to cleaner detection, invalid Unicode, and malformed cleaner data. Clipboard is now cleared automatically after shredding files via paste operations. Linux Added AppImage support. Added cleaners for Visual Studio Code, Codeium, Librewolf (.deb), Transmission (Flatpak), and Profanity. Improved Linux trash detection, including Snap-installed applications and mounted drives. Fixed Wayland root CLI issues and several Snap-related problems. Improved package dependencies, AppStream metadata, and desktop file handling. Fixed startup crashes when Python Requests is unavailable. Windows Fixed a security vulnerability that could allow arbitrary file deletion when cleaning with elevated privileges. Added %WindowsSystem% variable support. Improved clipboard clearing using native Windows APIs. Improved installer experience on unsupported Windows versions. Reduced installer size and improved application robustness. Fixed Unicode handling, filename anonymization, Git revision reporting, and splash screen stability. [full release notes] Download: BleachBit 6.0 | Portable | ~20.0 MB (Open Source) View: BleachBit Home page | Screenshot Get alerted to all of our Software updates on Twitter at @NeowinSoftware
    • DriversCloud 12.1.6 by Razvan Serea With DriversCloud (formerly My-Config.com), you can explore your computer easily, safely and free. The application quickly scans your PC and identifies the hardware and software components. DriversCloud then establishes a list of the different drivers compatible with your OS and hardware. Download the drivers needed for the proper functioning of your computer. To detect your drivers, DriversCloud also displays a detailed summary of your hardware and software configuration, analyzes your BSOD, monitors in real-time your PC voltages and temperatures and lets you share your configuration online. Once the hardware components have been detected, you will be able to obtain with just a few clicks the latest drivers corresponding to the identified hardware. You can record your configuration on the site for free, and can get the corresponding URL to post the configuration to technical forums, e-mail and social networks. You can also download the detection result (the configuration) as a PDF file. To protect the user's privacy and data confidentiality, a 4-level confidentiality system was created that filters the XML marks and gives control to the user. The default level can be modified in the preferences. Using the maximum level will prevent the user from publishing his configuration and generating a corresponding PDF file. In non-connected mode, each XML configuration is stored on the server for one day (for practical reasons). However, you are given the opportunity to manually delete it. Created in 2004, and continually improved, My-Config.com has established itself on the web as a free service to PC users running Windows and Linux operating systems. The service is designed to work with the most common Internet browsers (Edge, Firefox, Chrome, Safari). Download: DriversCloud 64-bit | 20.0 MB (Freeware) Download: DriversCloud 32-bit | 18.9 MB Link: DriversCloud Home Page | Screenshot Get alerted to all of our Software updates on Twitter at @NeowinSoftware
  • Recent Achievements

    • One Month Later
      AndreaB earned a badge
      One Month Later
    • One Month Later
      agatameier earned a badge
      One Month Later
    • Week One Done
      agatameier earned a badge
      Week One Done
    • Week One Done
      ssd21345 earned a badge
      Week One Done
    • Contributor
      MarkHughes4096 went up a rank
      Contributor
  • Popular Contributors

    1. 1
      +primortal
      516
    2. 2
      +Edouard
      189
    3. 3
      PsYcHoKiLLa
      148
    4. 4
      ATLien_0
      96
    5. 5
      Steven P.
      76
  • Tell a friend

    Love Neowin? Tell a friend!