Make Our Own Windows 8 Start Button With Zero Memory Usage

Introduction

 
In this article, we are going to explain how to make our own Windows 8 start button with zero memory usage. The start button doesn't exist in Windows 8, it was a huge mistake. Here's how to make your own "Start" button that shows the Metro Start screen, but doesn't waste any memory at all. We need to do some steps to create the Start button in Windows 8.
 

Creating Our Own Windows 8 Start Button

 
Step 1
 
First, we'll need to start by downloading and installing AutoHotkey, and we create a new script with the new AutoHotkey script item on the context menu. Then we paste in the following code-
  1. Send, {LWin down}{LWin up}   
 start-notpad-in-windows8.png
 
Step 2
 
Then save the script and right-click on the start and choose the compile script option, which will create an executable file.
 
 click-compile-script-in-windows8.png
 
Step 3
 
Right-click on the .exe and choose to Create Shortcut, and then open up the Shortcut properties screen.
 
 shortcut-tool-window-in-windows8.png
 
Step 4
 
There's a Windows flag icon in there, as well as some other icons and of course, we could use any icon file here if we wanted to, including one that we've downloaded from somewhere.
 
start-shortcut-properties-in-windows8.png 
 
Step 5
 
Right-click on the shortcut and select Pin to Task-bar.
 
 pin-to-taskbar-in-windows8.png
 
Step 6
 
We'll notice that I chose the Metro-style Window icon, which actually looks pretty cool, but again, we can use any icon we want.
 
 start-button-in-windows8-desktop.png
 
That's all there is to it; when the button is pressed, the Metro Start screen will be shown. Zero memory usage, since nothing is running in the background. In fact, we should be able to uninstall AutoHotkey at this point if we want.
 

Summary

 
In this article, we learned about Make Our Own Windows 8 Start Button With Zero Memory Usage.  


Similar Articles