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

    • So how did you solve the problem? Disabling Secure Boot isn’t a solution.
    • Another devilish issue surrounding these certificates is what can happen with old, unsuspecting PCs that nevertheless have Secure Boot enabled. In my case, it was a Dell with a 3rd-gen Core chip (so about 13 years old). As of the last few weeks, it was suddenly BSOD'g within about 5 minutes of booting. Turns out it was because of MS's "Secure-Boot-Update" scheduled task, which is scheduled to run 5 minutes after login. It's explained in gory detail here (this is not my post, but it was where I found the answer), but the short version is that this legacy system would need fairly elaborate, manual certificate intervention since MS's automatic cert update method cannot work. How to do that is linked late in the thread. https://www.bleepingcomputer.c...od-caused-by-scheduled-task Secure Boot wasn't at all important for this particular PC, so I disabled it to be done with the problem.
    • Winhance 26.06.12 by Razvan Serea Winhance is an open-source Windows enhancement utility designed to help users debloat, optimize, and customize Windows 10 and 11. It provides a user-friendly interface for removing unwanted apps, legacy components, and optional features safely, giving you more control over your system. With Winhance, you can improve performance, reduce clutter, and enhance privacy without the need for a clean install. Beyond basic debloating, Winhance offers extensive optimization tools. Users can tweak power plans, adjust gaming and performance settings, control notifications, and manage Windows Update behavior. Privacy-focused settings allow you to limit telemetry and data collection, while system customization options let you personalize the taskbar, Start menu, Explorer, and Windows themes. Winhance also supports installing or removing software efficiently, including external apps via WinGet integration, streamlining both new setups and daily maintenance. New AI privacy groups have been added for Windows AI, Microsoft Edge AI, and Microsoft Office AI, giving users clearer control over AI-related telemetry and feature usage. In addition, new settings in Gaming & Performance introduce AI taskbar pin toggles, options to remove AI apps, and controls for AI services and scheduled tasks, allowing users to better manage how AI components run in the background and appear in the system. For advanced users and IT professionals, Winhance integrates WIMUtil, a tool for creating custom Windows installation ISOs with automated configuration. You can generate autounattend.xml files, inject drivers, and apply your chosen Winhance settings automatically during installation. Most changes are non-destructive and reversible, with clear explanations in the GUI. Whether you’re optimizing a single PC or managing multiple systems, Winhance delivers a faster, cleaner, and highly personalized Windows experience. The Winhance.Installer.exe includes both Installable and Portable versions during setup. Winhance supports both Windows 10 and Windows 11 64-bit versions. It's regularly updated to ensure compatibility with the latest Windows updates and features. Winhance key features: Debloat Windows – Safely remove unwanted apps, features, and legacy components. Optimize Performance – Tune system settings for speed, responsiveness, and gaming. Privacy Enhancements – Control telemetry, data collection, and notifications. Power Management – Configure power plans and advanced energy settings. Windows Update Control – Adjust update behavior for stability and convenience. Theme Customization – Switch between light/dark mode and adjust system colors. Taskbar & Start Menu Tweaks – Modify layout, icons, and behavior. Explorer Customization – Adjust file explorer appearance and functionality. Software Management – Install/remove Windows apps and optional features. External Apps Installation – Deploy essential apps via WinGet integration. Configuration Management – Save, export, and import Winhance settings easily. Automation with WIMUtil – Create custom Windows ISOs with integrated settings. Autounattend.xml Generator – Automate Windows installations with preconfigured options. Driver Integration – Include current system drivers in custom ISOs. Non-Destructive Changes – Reversible settings with clear explanations in the GUI. Winhance 26.06.12 changelog: Features Builder Mode — build a Winhance config file or autounattend.xml without changing anything on the PC you're sitting at. Flip the new mode switcher to Builder, set everything the way you want it, and save the result as a Winhance config or an autounattend file ready for deployment on other machines. Sponsors & Supporters page — the exit donation dialog is gone. In its place, an in-app page (heart icon or the More menu) recognizes the businesses and individual supporters who keep Winhance free. It works offline and is fully localized. Change History — Winhance now keeps a receipt of everything it does. ChangeHistory.txt records every setting change (before and after values) and every app install or removal, with clear headers for config imports and bulk actions. Open it from the More menu. Hebrew language support — Winhance is now available in 29 languages. New Explorer customizations: desktop icon visibility toggles, This PC folder visibility, an icon cache size setting, and automatic thumbnail cache cleanup. New "All apps view" setting for the redesigned Windows 11 Start menu, and the Windows 11 system tray icons setting is now a dropdown with more control. App-local UI zoom — press Ctrl +/-/0 or use Ctrl+MouseWheel to scale the whole app, just like a browser. New External Apps: EA app, Ubisoft Connect, Battle.net, Rockstar Games Launcher, PowerShell, and Helium Browser. Bug Fixes Layouts no longer clip when the Windows text size slider is set above 100%. Accessibility: Narrator now announces setting names on toggles and dropdowns, previously unlabeled buttons are labeled, and progress updates are announced. Silent updates now respect your custom install location instead of reverting to the default. Cancel in Review Mode no longer clears your app selections. OneNote is now detected correctly for Win32 Click-to-Run installs. Clean Start Menu applies more reliably by also writing the group policy path. WinGet errors are no longer silent — error details now show in the terminal output. Fixed a startup crash on older Windows builds caused by a .NET runtime regression. Config import now converts power setting values correctly and no longer re-applies an already-active power plan. Improvements App icons load noticeably faster and cover almost everything now, including legacy capabilities and optional features — they come from a dedicated, checksum-validated icon repository and are fetched in parallel. Software & Apps polish: per-icon tooltips, extra table columns, an app sort dropdown, relocated search, and a cleaner compact view. A warning now appears when the Connected Devices Platform Service is set to Manual or Disabled, since some Windows features depend on it. Download: Winhance 26.06.12 | 61.5 MB (Open Source) Links: Winhance Website | Github | Screenshot Get alerted to all of our Software updates on Twitter at @NeowinSoftware
    • Microsoft Windows 11 Pro and Office Home & Business 2024 is still 69% off by Steven Parker Today's highlighted deal comes via our Apps + Software section of the Neowin Deals store, where you can save 69% on Windows 11 Pro + Microsoft Office Home & Business 2024. Upgrade your computing experience with Windows 11 Pro. This cutting-edge operating system boasts a sleek new design and advanced tools to help you work faster and smarter. From creative projects to gaming and beyond, Windows 11 delivers the power and flexibility you need to achieve your goals. With a focus on productivity, the new features are easy to learn and use, enhancing your workflow and efficiency. Whether you're a student, professional, gamer, or creative, Windows 11 Home has everything you need to take your productivity to the next level. New interface. easier on the eyes & easier to use Biometrics login*.Encrypted authentication & advanced antivirus defenses DirectX 12 Ultimate. Play the latest games with graphics that rival reality. DirectX 12 Ultimate comes ready to maximize your hardware* Screen space. Snap layouts, desktops & seamless redocking Widgets. Stay up-to-date with the content you love & the new you care about Microsoft Teams. Stay in touch with friends and family with Microsoft Teams, which can be seamlessly integrated into your taskbar** Wake & lock. Automatically wake up when you approach and lock when you leave Smart App Control. Provides a layer of security by only permitting apps with good reputations to be installed Windows Studio Effects. Designed with Background Blur, Eye Contact, Voice Focus, & Automatic Framing Touchscreen. For a true mouse-less or keyboard-less experience TPM 2.0. Helps prevent unwanted tampering Windows 11 Pro also includes a number of productivity-focused features, such as the ability to snap multiple windows together and create custom layouts, improved voice typing, and a new, more powerful search experience. Personal and professional users will enjoy a modern and secure computing experience, with improved performance and productivity features to help users get more done. Only on Windows 11 Pro If you require enterprise-oriented features for your daily professional tasks, then Windows 11 Pro is a better option. Set up with a local account (only when set up for work or school) Join Active Directory/Azure AD Hyper-V Windows Sandbox Microsoft Remote Desktop BitLocker device encryption Windows Information Protection Mobile device management (MDM) Group Policy Enterprise State Roaming with Azure Assigned Access Dynamic Provisioning Windows Update for Business Kiosk mode Maximum RAM: 2TB Maximum no. of CPUs: 2 Maximum no. of CPU cores: 128 Good to know: Length of access: lifetime Redemption deadline: redeem your code within 30 days of purchase Access options: desktop Max number of device(s): 1 Version: Windows 11 Pro Updates included Click here to verify Microsoft partnership Created with ChatGPT The essentials to get it all done. Microsoft Office 2024 Home is the latest version of Microsoft’s renowned productivity suite, which includes essential applications like Word, Excel, PowerPoint, and OneNote. This version is specifically designed for individuals and families seeking reliable tools for various home tasks, including document creation, spreadsheet management, presentation design, and note-taking. Office Home 2024 is for students and families who want classic Office apps on their Mac or PC. A one-time purchase installed on 1 PC or Mac for use at home or school. Lifetime license for MS Word, Excel, PowerPoint, & OneNote One-time purchase installed on 1 Windows PC for use at home or work Instant Delivery & Download – access your software license keys and download links instantly Free customer service – only the best support! Microsoft Office 2024 Home or Business for PC or Mac includes: Microsoft Office Word Microsoft Office Excel Microsoft Office PowerPoint Microsoft Office OneNote Is it legit? Click here to verify Microsoft partnership Good to Know ONE-TIME PURCHASE INSTALLED ON 1 DEVICE This licensing type will be connected with your Microsoft Account, NOT your actual device. This is a one-use code. The product you are purchasing is NOT MICROSOFT 365. Please read the product details. Redemption deadline: redeem your code within 30 days of purchase Access options: desktop Full versions No subscriptions – no monthly/annual fees Version: 2024 Updates included Here's the deal: This Microsoft Office Pro 2024 + Windows 11 Pro bundle normally costs $448.99, but this deal can be yours from just $134.97, that's a saving of $314. For full terms, specifications, and license info please click the link below. Microsoft Office Pro 2024 + Windows 11 Pro for just $134.97 (was $448.99) Although priced in U.S. dollars, this deal is available for digital purchase worldwide. Support queries If you have queries or need support for any of the Neowin Deals, please use the contact form here. Neowin Deals are managed and sold by StackCommerce who represent Neowin on an affiliate basis. Why we post these deals We post these because we earn commission on each sale so as not to rely solely on advertising, which many of our readers block. It all helps toward paying staff reporters, servers and hosting costs. So for those that keep moaning and complaining, be thankful we're still online for you to even do that. Other ways to support Neowin Whitelist Neowin by not blocking our ads Create a free member account to see fewer ads Make a donation to support our day to day running costs Subscribe to Neowin - for $14 a year, or $28 a year for an ad-free experience Disclosure: Neowin benefits from revenue of each sale made through our branded deals site powered by StackCommerce.
    • Of course the problem was Secure Boot's new certificates. Install media created by the official Media Creation Tool is already signed with a valid certificate from Microsoft, so maybe that certificate isn't "up-to-date" enough for machines with the new ones installed in the UEFI. There's really no other logical explanation.
  • Recent Achievements

    • Conversation Starter
      flexorcist earned a badge
      Conversation Starter
    • 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
  • Popular Contributors

    1. 1
      +primortal
      518
    2. 2
      +Edouard
      198
    3. 3
      PsYcHoKiLLa
      147
    4. 4
      ATLien_0
      95
    5. 5
      Steven P.
      77
  • Tell a friend

    Love Neowin? Tell a friend!