Skip to content

TechRepublic

  • Top Products Lists
  • AI
  • Developer
  • Payroll
  • Security
  • Project Management
  • TechRepublic Academy
  • Innovation
  • Cheat Sheets
  • Big Data
  • Tech Jobs
  • TechRepublic Premium
  • Top Products Lists
  • AI
  • Developer
  • Payroll
  • Security
  • Project Management
  • TechRepublic Academy
  • Innovation
  • Cheat Sheets
  • Big Data
  • Tech Jobs
  • See All Topics
  • Sponsored
  • Newsletters
  • Forums
  • Resource Library
TechRepublic Premium
Join / Sign In
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

TechRepublic Premium

  • TechRepublic Premium

    Point of Sale Security Guide and Checklist

    For retail businesses, the POS system is arguably their most important IT system. This TechRepublic Premium guide, and the accompanying checklist, will help you successfully secure a POS system for your business enterprise. From the guide: ACCESS CONTROLS The first line of defense in any POS system is the control of both physical and network ...

    Provided By TechRepublic Premium Published:  Sep 2023 Modified:  Sep 2023 Read More
    Download Now
  • TechRepublic Premium

    Quick Glossary: Spacetech

    The space industry is witnessing a profound transformation, driven by new technologies and the greater participation of the private sector. From satellites to weather, agriculture and communications to space connectivity, industrial IoT devices and scientific, government or space exploration missions, the potential is vast. TechRepublic Premium presents this spacetech glossary to help you understand the ...

    Downloads
    Provided By TechRepublic Premium Published:  Sep 2023 Modified:  Sep 2023 Read More
    Download Now
  • TechRepublic Premium

    Internet and Email Usage Policy

    This policy from TechRepublic Premium sets forth guidelines for the use of the internet, as well as internet-powered communication services, including email, proprietary group messaging services (e.g., Slack) and social networking services in business contexts. It also covers Internet of Things use and bring-your-own-device practices. From the policy: SAFE BROWSING • Use a modern, supported ...

    Downloads
    Provided By TechRepublic Premium Published:  Sep 2023 Modified:  Sep 2023 Read More
    Download Now
  • TechRepublic Premium

    Email/Instant Message/Voicemail Retention Policy

    Maintaining electronic communications in business involves walking a fine line. Employees want relevant information to be kept available for future reference so that they can do their jobs, but keeping these items long-term can pose security and resource risks. The purpose of this policy from TechRepublic Premium is to establish requirements for the retention and ...

    Downloads
    Provided By TechRepublic Premium Published:  Sep 2023 Modified:  Sep 2023 Read More
    Download Now

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
  • TechRepublic
  • TechRepublic on Twitter
  • TechRepublic on Facebook
  • TechRepublic on LinkedIn
  • TechRepublic on Flipboard
© 2023 TechnologyAdvice. All rights reserved.
  • Privacy Policy
  • Terms of Use
  • Property of TechnologyAdvice