Glam Prestige Journal

Bright entertainment trends with youth appeal.

As part of my job I install a suite of software, and frequently find myself uninstalling one element or another to test latest versions. Each of the programs is installed under a different name, but they all have the first few characters in common. I can filter the results of appwiz in the GUI by using the search field at the top of the page to show just my applications. Currently I have a shortcut to appwiz.cpl on the taskbar, but I was hoping to streamline my workflow further by including a filter in the search field when using this shortcut so that only our applications are shown. Is this trivial or even possible?

As an example, say that I had many Intel applications installed. I want to be able to open appwiz via a shortcut or batch command with a preconfigured search for 'Intel', so that only apps with 'Intel' show up in the window that is opened as a result of the shortcut.

Thanks in advance, If I'm not being clear please do tell me how I can clarify.

2

2 Answers

The best I found was to create an AutoHotKey script and make it tab over quickly to the search box and type in your query there, since it doesn't look like appwiz.cpl takes in any arguments:

#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn ; Enable warnings to assist with detecting common errors.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
Run, appwiz.cpl
WinWaitActive, Programs and Features
Send, {Tab}{Tab}{Tab}{Tab}
Send, Your query here

This was tested on Windows 11.

1

I don't believe this is possible.

The closest you'll get is to create a shortcut to appwiz.cpl using its canonical name with %systemroot%\system32\control.exe /name Microsoft.ProgramsAndFeatures

There's no other parameter to pass in for Microsoft.ProgramsAndFeatures.

If you want to see what Intel applications are installed, you'd be better using Get-WmiObject -Class Win32_Product

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy