Skip to content

TechRepublic

  • Top Products
  • AI
  • Developer
  • Payroll
  • Security
  • Project Management
  • Accounting
  • CRM
  • Academy
Resources
  • TechRepublic Premium
  • TechRepublic Academy
  • Newsletters
  • Resource Library
  • Forums
  • Sponsored
Go Premium
Popular Topics
  • Top Products
  • AI
  • Developer
  • Payroll
  • Security
  • Project Management
  • Accounting
  • CRM
  • Academy
  • Project Management
  • Innovation
  • Cheat Sheets
  • Big Data
  • Tech Jobs
View All Topics
Go Premium
Software

Access the Apps screen with a self-made Start button

By Greg Shultz December 13, 2012, 1:24 AM PST

Image
1
of 8

Fig_A_12-14.png
Fig_A_12-14.png
Access the Apps screen with a self-made Start button

As you type the shortcut, beware of typos

As you type the shortcut, beware of typos

ntThis gallery is also available as a post in the Windows and Office Blog.

n

ntAfter my You don’t really need a Start Menu in Windows 8 article was published, the ensuing discussion really took off sprouting points from both sides of the issue. It seems that a lot of people are really ticked off that the Start menu is no longer a part of the operating system. While my guess is that a lot of those folks will opt for a Start menu replacement, such as StartW8, Classic Shell, or Start8, I heard from plenty of others who stated that they were willing to give the new Start screen and Apps screen a shot even though they lamented the passing of the Start menu.

n

ntAs you probably know by now, my method of choice for launching applications in Windows 8 it to press the [Windows] on my keyboard, which immediately brings up the Apps screen along with the Search panel into which I just type the first few letters of the application that I want to launch. While some folks like that technique, others detested the thought of typing anything into a GUI in order to launch an application. They’d much rather just click with the mouse. Thinking that was a reasonable request, I began investigating a way to create a shortcut that would allow you to directly access the Apps screen with a simple click of the mouse.

n

ntIt took a while but I finally unearthed a CLSID key in the Windows 8 registry that can be used to construct a shortcut that will instantly access the Apps screen. I then pinned that shortcut to the taskbar, changed its icon, moved it to the left edge of the taskbar, and Voila! I had a Start button to access the Apps screen.

n

ntSo using this technique, you can just click a Start button to bring up the Apps screen and then click the icon of the application you want to launch. No keyboard, no shortcut keystrokes, just mouse clicks. And, best of all, if you implement the technique I showed you in the article Make Windows 8 boot straight to the desktop, you’ll basically have a Windows 7 style interface in Windows 8 without having to use any third-party utilities.

n

ntIn this post, I’ll show you how to create the CLSID shortcut to the Apps screen and set it up like a Start button.

n

ntnn

n

ntThe CLSID

n

ntWhile you won’t have to go traipsing around the registry in order to implement this technique – I already did that – you may be curious as to where the CLSID came from. Essentially, a CLSID key is a part of the registry that contains code that provides access to specific system objects in the operating system, such as system folders. The CLSID keys can be found in two places in the Registry:

n

ntHKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID and HKEY_CLASSES_ROOT\CLSID.

n

ntNow, under normal circumstances, you would never need to use a CLSID because it is specifically designed to be used by developers and the operating system. In fact, a CLSID is a 128 bit Hexadecimal number enclosed in braces, so it’s not very user friendly.

n

ntIn any case, the CLSID that provides access to the Apps screen is

n

nt{2559a1f8-21d7-11d4-bdaf-00c04f60b9f0}

n

ntThe shortcut

n

ntTo use the CLSID to launch the Apps screen, you’ll use the Shell command. In order to launch a Shell command from a shortcut, you need to use the explorer.exe command. As such, the shortcut to launch the Apps screen consists of the following command line. (Take note that there are three colons between the word shell and the left brace. Also keep in mind that there is only one space in the whole command line between the .exe file extension and the word shell.)

n

ntexplorer.exe shell:::{2559a1f8-21d7-11d4-bdaf-00c04f60b9f0}

n

ntTo create the shortcut, just open the Documents folder, right-click on the background, and choose the New | Shortcut command. When you see the first screen in the Create Shortcut wizard, type the shortcut in the text box, as shown in Figure A. Then, click Next.

n

ntCredit: Images by Greg Shultz for TechRepublic

Access the Apps screen with a self-made Start button

Just use a short name for the shortcut

Just use a short name for the shortcut

ntWhen you see the second screen in the Create Shortcut wizard, type a short name for your shortcut. As you can see in Figure B, I named my example shortcut Apps. To complete the wizard, just click Finish.

n

ntCredit: Images by Greg Shultz for TechRepublic

Access the Apps screen with a self-made Start button

Right click on the shortcut and choose the Properties command

Right click on the shortcut and choose the Properties command

ntAs soon as you see the shortcut icon, right click on it and select the Properties command, as shown in Figure C.

n

ntCredit: Images by Greg Shultz for TechRepublic

Access the Apps screen with a self-made Start button

By default, the Change Icon dialog box displays the icons from the explorer.exe

By default, the Change Icon dialog box displays the icons from the explorer.exe

ntWhen you see the Properties dialog box, click the Change Icon button to open the Change Icon dialog box, as shown in Figure D. By default the Change Icon dialog box displays the icons from the explorer.exe file. As you can see, none of the available icons are very exciting. However, if you click the Browse button, you can search for other files that contain icons.

n

ntCredit: Images by Greg Shultz for TechRepublic

Access the Apps screen with a self-made Start button

While the Windows flag icon is a good choice, I like the Windows Media Center icon better

While the Windows flag icon is a good choice, I like the Windows Media Center icon better

ntI first found a nice Windows flag in the imageres.dll file (C:\Windows\System32.dll) that I considered using, but then I remembered the green Orb icon from Windows Media Center was very nice and found it in the ehshell.exe file (C:\Windows\ehome). Both are shown in Figure E.

n

ntCredit: Images by Greg Shultz for TechRepublic

Access the Apps screen with a self-made Start button

Select the Pin to Taskbar command

Select the Pin to Taskbar command

ntI ended up choosing the Windows Media Center icon because it resembles the Start button but since it is green, it is different from the blue Windows 7 icon. Of course, you can use any icon that you prefer. As soon as you choose your icon, right click on it and then select the Pin to Taskbar command, as shown in Figure F.

n

ntCredit: Images by Greg Shultz for TechRepublic

Access the Apps screen with a self-made Start button

Drag the pinned icon to the left side of the taskbar

Drag the pinned icon to the left side of the taskbar

ntOnce your custom Start button appears on the taskbar, drag it all the way to the left side of the taskbar, as shown in Figure G. As you can see, using the green Orb icon and positioning it at the end of the taskbar really makes the desktop look like Windows 7.

n

ntCredit: Images by Greg Shultz for TechRepublic

Access the Apps screen with a self-made Start button

Clicking your custom Start button brings up the Apps screen

Clicking your custom Start button brings up the Apps screen

ntNow when you click your custom Start button, the Apps screen will appear, as shown in Figure H. You can then click once to dismiss the Search panel, and then select the icon of the application that you want to launch. And, as I mentioned, if you combine this custom Start button technique with the trick I showed you in the article Make Windows 8 boot straight to the desktop, you’ll basically have a Windows 7 style interface in Windows 8 without having to use any third-party utilities.

n

ntWhat’s your take?

n

ntWhat do you think about creating a Start button to access the Apps screen in windows 8? Will you try it? As always, if you have comments or information to share about this topic, please take a moment to drop by the TechRepublic Community Forums and let us hear from you.

n

ntAlso read:

n

    nt

  • nttYou don’t really need a Start Menu in Windows 8
  • nt

  • nttMake Windows 8 boot straight to the desktop
  • nt

  • nttMake the Windows 8 Start Screen work like the Start Menu
  • n

n

ntCredit: Images by Greg Shultz for TechRepublic

  • Software
  • Account Information

    Share with Your Friends

    Access the Apps screen with a self-made Start button

    Your email has been sent

Share: Access the Apps screen with a self-made Start button
Image of Greg Shultz
By Greg Shultz
My first computer was a Kaypro 16 \"luggable\" running MS-DOS 2.11 which I obtained while studying computer science in 1986. After two years, I discovered that I had a knack for writing documentation and shifted my focus over to technical writing.
  • Account Information

    Contact Greg Shultz

    Your message has been sent

  • |
  • See all of Greg's content

Daily Tech Insider

If you can only read one tech story a day, this is it.

TechRepublic TechRepublic
  • TechRepublic on Facebook
  • TechRepublic on X
  • TechRepublic on LinkedIn
  • TechRepublic on YouTube
  • TechRepublic on Pinterest
  • TechRepublic RSS
Services
  • About Us
  • Newsletters
  • RSS Feeds
  • Site Map
  • Site Help & Feedback
  • FAQ
  • Advertise
  • Do Not Sell My Information
  • Careers
Explore
  • Downloads
  • TechRepublic Forums
  • Meet the Team
  • TechRepublic Academy
  • TechRepublic Premium
  • Resource Library
  • Photos
  • Videos
  • Editorial Policy
  • Legal Terms
  • Privacy Policy
© 2025 TechnologyAdvice. All rights reserved.
CLOSE

Create a TechRepublic Account

Get the web's best business technology news, tutorials, reviews, trends, and analysis—in your inbox. Let's start with the basics.

Already registered? Sign In
Use Facebook
Use Linkedin

* - indicates required fields

CLOSE

Sign in to TechRepublic

Not a member? Create an account
Use Facebook
Use Linkedin

Lost your password? Request a new password

CLOSE

Reset Password

Please enter your email adress. You will receive an email message with instructions on how to reset your password.

Check your email for a password reset link. If you didn't receive an email don't forgot to check your spam folder, otherwise contact support.

Back to login
1 Finish Profile
2 Newsletter Preferences
CLOSE

Welcome. Tell us a little bit about you.

This will help us provide you with customized content.

No thanks, continue without
1 Finish Profile
2 Newsletter Preferences
CLOSE

Want to receive more TechRepublic news?

Newsletter Name
Subscribe
Daily Tech Insider
Daily Tech Insider AU
TechRepublic UK
TechRepublic News and Special Offers
TechRepublic News and Special Offers International
Executive Briefing
Innovation Insider
Project Management Insider
Microsoft Weekly
Cloud Insider
Data Insider
Developer Insider
TechRepublic Premium
Apple Weekly
Cybersecurity Insider
Google Weekly
Toggle All
No thanks, continue without

You're All Set

Thanks for signing up! Keep an eye out for a confirmation email from our team. To ensure any newsletters you subscribed to hit your inbox, make sure to add [email protected] to your contacts list.

Back to Home Page
×