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

    • A coalition of publishers sued OpenAI and Microsoft over scraping content without consent by Hamid Ganji Image via Depositphotos.com AI companies often rely on readily available internet content to train their chatbots and provide users with instant answers. This method of AI training is fast and relatively inexpensive, but using a website’s content without permission or compensation is not something publishers like to see, and this is exactly why Microsoft and OpenAI are now being sued. As reported by Bloomberg, a group of publishers that collectively own nearly 400 newspapers has filed a lawsuit against OpenAI and Microsoft. The coalition argues that the two companies scraped their content to build AI chatbots like ChatGPT and Copilot without paying any compensation. The complaint, filed in the U.S. District Court for the Southern District of New York, argues that while AI products have generated billions of dollars in market value using publishers’ work, none of that value has been shared with the publishers. The plaintiffs are seeking statutory damages and injunctive relief for alleged copyright infringement and violations of the Digital Millennium Copyright Act. “Defendants systematically and secretly crawled the Publishers’ websites—including content behind paywalls and other access restrictions—and copied the Publishers’ articles, stories, and other original works onto their own servers without authorization,” the complaint states. The publishers also described the AI boom as a “death knell for local journalism” if AI companies that scrape content for free are not held accountable. Former New Jersey Attorney General Matthew Platkin and his law firm, Platkin LLP, are representing the publishers. “Our models empower innovation, are trained on publicly available data, and are grounded in fair use,” OpenAI spokesperson Drew Pusateri told Bloomberg. This is not the first lawsuit involving the unauthorized use of publishers’ content by AI firms, but it is one of the largest coalitions ever formed against the free use of content by AI chatbots. In 2024, OpenAI and Microsoft also faced a similar lawsuit from eight newspapers that claimed AI products were benefiting from their content without permission.
    • Rufus alternative Ventoy now supports Windows 11's mandatory update, fixes major boot bug by Sayan Sen While Microsoft has its own official Media Creation Tool used for making bootable USB media, there are some popular third-party utilities as well which offer additional options like bypassing system requirements, Microsoft Account creation, and more. One of these is Ventoy, and the software has received its latest update today. In fact, the app actually got a slew of updates over the last couple of days, three version releases in total, to be specific. The first release, version 1.1.13, was pulled as there was some unspecified error in the update, and as such, the corrected version 1.1.14 was pushed out. Following that on very short notice, 1.1.15 was published as well. For those unfamiliar, Ventoy is an open-source utility that lets users create a bootable USB drive once and then simply copy ISO, WIM, IMG, VHD, or EFI files onto it without repeatedly formatting the drive. It supports both legacy BIOS and UEFI boot modes, Secure Boot, and a wide range of operating systems, making it one of the most versatile tools in the category. The biggest change in version 1.1.14 is an updated Secure Boot shim file aimed at resolving the UEFI CA 2023 issue, which is basically a compatibility problem that has affected Secure Boot environments on some systems. If you recall, we reported about severe boot issues on HP devices following the release of updated Secure Boot 2023 keys. For anyone who may not be aware, back in early 2024, Microsoft announced that it was updating Secure Boot keys as they were going to become 15 years old in 2026, which is also when they are set to expire. As such, the new 2023 certificates have been rolling out with the newest Windows 11 updates. Updated boot manager and Secure Boot certificates are crucial for protection against malware like bootkits. These are mandatory updates. Alongside that, the VentoyPlugson graphical plugin configurator was updated in sync with the release. The update also introduces a new VTOY_SECURE_BOOT_POLICY option within the Global Control plugin, giving users more flexibility in managing Secure Boot behavior. Ventoy has also received a fix for a startup issue when Secure Boot was disabled. Microsoft does officially allow users to boot systems without Secure Boot as long as the PC is Secure Boot capable. The full changelog is given below: Update secure boot shim file to solve the UEFI CA 2023 issue. The new release use a new CA, so you need to enroll the new key for the first boot time. VentoyPlugson update synchronously. Global control plugin add a VTOY_SECURE_BOOT_POLICY option. Fix the boot issue when Secure Boot is disabled in the UEFI firmware. You can download the latest version of the app here on Ventoy's official GitHub repo or from Neowin software stories.
    • Windows 11 is fine, no issues on any of the machines I've run it on since release. The stricter security requirements are a good thing, sometimes the baseline needs to change and people will winge, but it is what it is. Happened with the move from 9x to NT - broke compatability Happened with XP SP2 when security started to become a serious consideration Certainly happend with Vista that brought in UAC, the concept of not running as admin (something that has been the norm in Linux/Unix from pretty much the start) and a completely new driver stack. Windows 11 will probably get looked back at as the point where even consumer and SMB IT was dragged kicking and screaming into a somewhat secure by default configuration.
    • Bluestacks has been emulating Android on Windows for fifteen years. It's janky and riddled with ads though, so WSA looked like it was going to be a huge improvement over the emulator experience. Too bad Microsoft dropped the ball on that.
    • Classic. China would be nothing without Western, Japanese, and South Korean technology.
  • Recent Achievements

    • Rookie
      krychek57 went up a rank
      Rookie
    • Grand Master
      Jaybonaut went up a rank
      Grand Master
    • One Year In
      Philsl earned a badge
      One Year In
    • Dedicated
      Scoobystu earned a badge
      Dedicated
    • First Post
      Tom Schmidt earned a badge
      First Post
  • Popular Contributors

    1. 1
      +primortal
      441
    2. 2
      +Edouard
      172
    3. 3
      PsYcHoKiLLa
      134
    4. 4
      Michael Scrip
      78
    5. 5
      Xenon
      77
  • Tell a friend

    Love Neowin? Tell a friend!