- Open the Start menu.
- Find the application or shortcut with the incorrect icon.
- Right-click on the application.
- Select Open file location.
- This will open the Start menu folder.
- Open another Explorer window.
- Navigate to the main hard drive and locate the application, usually found in either Program Files or Program Files (x86).
- Find the executable (.exe) file within the folder of the application.
- Right-click and Create shortcut.
- If asked to place the shortcut on the desktop, select Yes.
- Go to the desktop, right-click on the shortcut, and select Cut.
- Right-click and Paste the shortcut into the first window (the Start menu folder).
- Rename the shortcut, if necessary, and delete the shortcut with the incorrect icon.
26 May 2015
Windows 8: How to Fix Incorrect Start Menu Icons
How to fix incorrect shortcut icons in the Windows 8 start menu.
19 May 2015
Command Prompt: Random Colors with a Batch Script
How to have the command prompt text and background change colors with a batch script.
@echo off
set NUM=0 1 2 3 4 5 6 7 8 9 A B C D E F
for %%x in (%NUM%) do (
for %%y in (%NUM%) do (
color %%x%%y
timeout 1 >nul
)
)
- Open a blank Notepad document.
- Copy and paste the code at the bottom of this post.
- Go to File, then Save As...
- Change Save as type to All Files.
- Add .bat to the end of the file name.
- Save the file to an easy-to-find location, such as the desktop.
- Open Command Prompt.
- Type cd C:\Users\Name\Desktop or use the file path given in the most recent line of Command Prompt.
- Press enter.
- Type the name of the .bat file and press enter.
- The text and background will randomly change colors.
- Use CTRL + C to end the script.
@echo off
set NUM=0 1 2 3 4 5 6 7 8 9 A B C D E F
for %%x in (%NUM%) do (
for %%y in (%NUM%) do (
color %%x%%y
timeout 1 >nul
)
)
12 May 2015
Command Prompt: How to Change Text Color
How to change the text and background color in the Windows 8 command prompt.
- Open Command Prompt.
- Right-click on the title of the window.
- Click Properties.
- Switch to the Colors tab.
- Select either text or background (the top two options).
- Choose a color from the provided colors or type in your own color using the RBG values.
- Click OK at the bottom of the window.
- The changes will be applied.
- To reset the colors, type color into the command prompt.
05 May 2015
DuckDuckGo: How to Turn Off Advertisements
How to turn off advertisements in the DuckDuckGo search engine.
- Open DuckDuckGo.
- Click on the settings icon in the upper right corner.
- Click on Advanced Settings.
- Scroll down to Advertisements and click the blue On button to show Off.
- At the bottom of the page, click Save and Exit.
- Advertisements will no longer appear on the DuckDuckGo search results page.
Subscribe to:
Posts (Atom)