Early Feedback on Start Menu Extender


  

53 members have voted

  1. 1. What do you think?

    • Useless
    • I would definitely use
    • Best idea ever!!
    • I would use, but only if...


Recommended Posts

OK, folks, the first not quite beta release is now available. You can download from HERE at the moment there are only two plugins that are shipping here. One is the launch internet search and the other basic math (ie: only one operator, two numbers sort of math). These will be advanced over time and there will be a lot more plugins to come.

At the moment, this is for Windows 7 only, and you will need the .NET 4 framework (from here)

If there are any .NET developers who would want to create plugins then PM me or send me an email (or if you would like to suggest any, also) smile.gif

The "official" web page is here: http://www.lukepayne...cts/startmenux/

----

Here is a video of a start menu extender I am working on:

I currently have most of the base framework up and am just creating a few content plugins. The ones displayed in the video are able to do basic math, launch internet searches and lookup dictionary meanings. There are a few others I am tweaking including one that you can punch in a registry path and it launches the registry editor at that path.

.NET developers will be able to plugin to the framework once released.

I am wondering if people think this would be useful? and if so what plugins would you like to see? I'll also answer any other questions you may have smile.gif

That is very cool Luke!

some suggestions (not about your program)

1) Record just a small box around your start menu, it's hard to see in that video, unless you full-screen it.

2) Don't make your poll multiple choice :p

Also, if you are interested in making this public to everyone, please send me a PM or email @ andrew.lyle[-at-]neowin.net, and I can maybe help you out with that ;)

some suggestions (not about your program)

1) Record just a small box around your start menu, it's hard to see in that video, unless you full-screen it.

2) Don't make your poll multiple choice :p

Thanks!

Why not make the poll multiple choice, am I missing something laugh.gif

Here is a video that you do not need to view full screen, however this is an earlier (an buggier) version tongue.gif

I can't see the video at work. Can you explain what it is?

You know on the Windows Vista/7 start menu as you use the search box, and the results list comes up? This adds extra things to that list (such as exampled in the video: dictionary & calculator results for your search).

Thanks!

Why not make the poll multiple choice, am I missing something

He means don't allow people to select multiple answers in this sort of poll.

As for the app... Looks good, but I would never use it. I'm sure a lot would though.

OK, folks, the first not quite beta release is now available. You can download from HERE at the moment there are only two plugins that are shipping here. One is the launch internet search and the other basic math (ie: only one operator, two numbers sort of math). These will be advanced over time and there will be a lot more plugins to come.

At the moment, this is for Windows 7 only, and you will need the .NET 4 framework (from here)

If there are any .NET developers who would want to create plugins then PM me or send me an email smile.gif

The "official" web page is here: http://www.lukepaynesoftware.com/projects/startmenux/

  • 2 weeks later...

What I'd love is a more OSX quicksilver style of search

For example, on windows, I have to type photoshop in full, or at least in order for it to find photoshop from my programs list.

In quicksilver, I could be as sloppy as I wanted phphp would work, toshop would work, even adbph would work.

What I'd love is a more OSX quicksilver style of search

For example, on windows, I have to type photoshop in full, or at least in order for it to find photoshop from my programs list.

In quicksilver, I could be as sloppy as I wanted phphp would work, toshop would work, even adbph would work.

Great idea :) I am planning on working on something similar to this once I have the base appplication completely sorted out.

You know on the Windows Vista/7 start menu as you use the search box, and the results list comes up? This adds extra things to that list (such as exampled in the video: dictionary & calculator results for your search).

didn't that Microsoft guy who used to be on these forums already make somethign like this, back in the vista days ?

yeah, Start++

http://brandontools.com/

not sure if that works on 7 too though.

i think you should actually implement it in this, no need to make so many apps :p

this looks awesome

That's what I meant, as an extension for this application smile.gif

didn't that Microsoft guy who used to be on these forums already make somethign like this, back in the vista days ?

yeah, Start++

http://brandontools.com/

not sure if that works on 7 too though.

Cool, haven't seen that before.

didn't that Microsoft guy who used to be on these forums already make somethign like this, back in the vista days ?

yeah, Start++

http://brandontools.com/

not sure if that works on 7 too though.

yea i found that one too... there is something wrong with the site though so you can't download :(

  • 4 months later...

@luke_smily_face

So I spent some time in Reflector going through the app. (Nice obfuscation tool btw. Always cracks me up to see music symbols in source) It took me a bit to grok how you were putting this together, but with a little toying with Spy++ and putting 2 and 2 together, I figured out how you're doing this. Nice idea for an implementation! I wouldn't have thought to hook the start menu's textbox and listen for the appropriate input. Very novel approach.

One suggestion for you; the start menu's appearance can be achieved without static PNGs like you're using for the borders. You can use the DWM api to draw that for you. Granted you'll see whatever is behind the 'glass', but it'll look a lot more native and work with whatever tints, if any, the user applies, without having to ship the binaries with a poopton of images embedded. If you're up for opening the source on this, I'd love to pitch in. If not, no worries, I hope that helps some.

@luke_smily_face

So I spent some time in Reflector going through the app. (Nice obfuscation tool btw. Always cracks me up to see music symbols in source) It took me a bit to grok how you were putting this together, but with a little toying with Spy++ and putting 2 and 2 together, I figured out how you're doing this. Nice idea for an implementation! I wouldn't have thought to hook the start menu's textbox and listen for the appropriate input. Very novel approach.

One suggestion for you; the start menu's appearance can be achieved without static PNGs like you're using for the borders. You can use the DWM api to draw that for you. Granted you'll see whatever is behind the 'glass', but it'll look a lot more native and work with whatever tints, if any, the user applies, without having to ship the binaries with a poopton of images embedded. If you're up for opening the source on this, I'd love to pitch in. If not, no worries, I hope that helps some.

Hi andrew_ - I know obfuscation isn't going to stop people who know what they are doing from finding out how it works, that isn't my intention. My intention is to stop those who don't from having somewhat of a copy and paste of the code available to them.

My plan was never to keep the static PNGs, I've been looking at better ways to accomplish this, the DWM API being one option :)

I haven't decided whether to open source this or not just yet, as I just want to make the code more solid and stable and integrate more features, at this stage. I'll be sure to let you know if I do open it up.

I know obfuscation isn't going to stop people who know what they are doing from finding out how it works, that isn't my intention. My intention is to stop those who don't from having somewhat of a copy and paste of the code available to them.

My plan was never to keep the static PNGs, I've been looking at better ways to accomplish this, the DWM API being one option :)

I haven't decided whether to open source this or not just yet, as I just want to make the code more solid and stable and integrate more features, at this stage. I'll be sure to let you know if I do open it up.

Thanks for the reply. Ya know, I subscribed to that philosophy for a long, LONG time. I've come around though and find that the fear I had about folks copying my work and releasing it as their own was unsubstantiated. I certainly understand how you think, but I've found that since I threw caution to the wind and started releasing things openly, I've had a really positive experience.

Looking forward to following the development at any rate.

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

    • No registered users viewing this page.
  • Posts

    • Same Internet Archive seemed to grab the new version https://web.archive.org/web/20...d/Setup_MakeMKV_v1.18.4.exe Here's the link to an additional file it periodically downloads https://web.archive.org/web/20260213092148/https://www.makemkv.com/sdf.bin I think update's keys, etc. To manually trigger this update, put the sdf.bin file in the root of where the program is installed. When you launch the program it will pick up the file and import it. Typically put it here: C:\Program Files (x86)\MakeMKV\sdf.bin
    • Windows 11 KB5094126, KB5093998 bugging out Office apps but it may not be Microsoft's fault by Sayan Sen Microsoft last week released Windows 11 KB5094126 and KB5093998 as the latest Patch Tuesday updates. Following that the company also published the accompanying dynamic updates under KB5094149, KB5095971, and KB5094156. Although the tech giant did not acknowledge any major problems, some users online reported various issues ranging from OneDrive and Dropbox access problems, BitLocker recovery lockouts, to blue screens and BSODs. You can read about them in this dedicated piece. While there is still no confirmation about those problems from Microsoft the company has admitted to another bug which we did not report on. The tech giant has confirmed it has received reports of an issue in which certain third-party applications may be unable to launch Microsoft Office apps or open Office documents after installing the Patch Tuesday. This affects both Windows 11 as well as Windows 10. The company says the problem impacts a subset of applications that rely on OLE (Object Linking and Embedding) automation to communicate with Microsoft Office programs. According to Microsoft, affected scenarios involve third-party software attempting to open Office applications or documents from within their own interface. In such cases, the Office program may fail to launch altogether, or the requested document may not open. Oddly there may not be any error message, which probably makes the issue difficult to diagnose. The bug affects several Office products, including Word, Excel, PowerPoint, Access, and other apps in the Microsoft Office suite when they are launched through the affected software. These include tax and accounting software such as CCH Engagement and Workpaper Manager, dental practice management solutions like Dentrix and Softdent, as well as the popular research and reference management tool Zotero. Microsoft adds that other applications using similar Office integration methods could also experience the same problematic behavior. To understand the issue it is important to look at OLE, the Microsoft technology involved. OLE allows different applications to work together and share data, while its Automation feature lets one program control another. Thus this enables third-party software to launch Microsoft Office apps, open documents, and perform tasks automatically without requiring users to switch between programs. Because many accounting, healthcare, research, and business applications rely on OLE automation to interact with Word, Excel, PowerPoint, and other Office apps, any disruption can break those workflows. As a result, affected software may be unable to open Office documents or launch Office applications even though the programs themselves continue to work normally. At the moment the company has not provided a permanent fix though it has confirmed that engineers are actively working on a resolution, which will be delivered through a future Windows update. As such additional details will be shared once more information becomes available. In the meantime, Microsoft recommends a simple workaround for affected users whic is to open the Office application or document directly rather than launching it through the third-party program. For enterprise customers and organizations managing larger deployments, Microsoft says an additional mitigation is available. Admins experiencing the problem on their managed devices are advised to contact Microsoft Support for business to obtain and apply the workaround.
    • It saddens me when cars are such dull colours now. Mine is bright metallic blue and I absolutely adore it for standing out in contrast to that depressing backdrop of traffic.
    • Sparkle 2.20.0 by Razvan Serea Sparkle is a free, open-source Windows optimization tool designed to make your PC faster, cleaner, and more private. With Sparkle, you can easily debloat Windows by removing unnecessary apps and services, disable Microsoft tracking to enhance privacy, and apply performance tweaks to boost speed. Its cleaner removes junk and temporary files, while every change is safe and fully reversible. Sparkle also features a modern, user-friendly interface with automatic updates, making system maintenance simple. Explore over 39 tweaks, from disabling telemetry and hibernation to optimizing network and game settings, all aimed at customizing and enhancing your Windows experience. Sparkle supports Windows 10 and 11. Sparkle 2.20.0 changelog: Debloat Tweak has animated border New homepage loading UI New Tweak Modal (Markdown Supported) Refactored GPU Detection Added Tests with vitest Added foobar2000 to apps Added Localsend to apps Updated Modal Styles Added styles for disabled inputs Added Animated Border to debloat-windows tweak Bumped dependencies Refactor System info logic for speed Tweak info modals now support Markdown Added Clear System info cache to settings Redesigned Home Page Loading UI Changed Some Icons around the app Download: Sparkle 2.20.0 | Portable | ~100.0 MB (Open Source) Links: Sparkle Website | Github | Screenshot Get alerted to all of our Software updates on Twitter at @NeowinSoftware
    • lol it was a typo, fixed! haha imagine an actual 4TB Gen4 NVMe for $40 in 2026
  • Recent Achievements

    • Reacting Well
      Dys Topia earned a badge
      Reacting Well
    • Conversation Starter
      NovaEdgeX earned a badge
      Conversation Starter
    • One Year In
      Console General earned a badge
      One Year In
    • Week One Done
      Twozo Technologies earned a badge
      Week One Done
    • One Month Later
      Twozo Technologies earned a badge
      One Month Later
  • Popular Contributors

    1. 1
      +primortal
      517
    2. 2
      +Edouard
      184
    3. 3
      PsYcHoKiLLa
      106
    4. 4
      Steven P.
      88
    5. 5
      ATLien_0
      68
  • Tell a friend

    Love Neowin? Tell a friend!