How to customize win10 start menu background and icon win10 start menu background and icon custom settings tutorial

  

Win10 system through the XML file control custom start menu background function has been canceled, but users can still pass some third parties Software to achieve this function.

Win10 custom start menu method:

Here is the soft media cube as an example.

1, first fix the program in the start screen;

2, right click on the soft media cube tile & mdash; more & mdash; open the file location, as shown below: Br>

3, find the Rubik's Cube shortcut in the open start menu directory, right click — open the location of the file, as shown below:

In the directory you can see the Rubik's main program file named pcmaster.exe.

4, create a new text document on the desktop, rename it to pcmaster.VisualElementsManifest.xml

Note: To remove the text file default .txt suffix

with notepad Open pcmaster.VisualElementsManifest.xml and copy the following code into the document to save.

"?xml version=“1.0” encoding=“utf-8”?"

"Application xmlns:xsi=“http://www.w3.org/2001/XMLSchema-instance”

VisualElements

ForegroundText=“light”

BackgroundColor=“#49825a”

ShowNameOnSquare150x150Logo=“ On”

"/VisualElements"

"/Application"

5. Copy the prepared pcmaster.VisualElementsManifest.xml to the pcmaster.exe file directory.

6, to the most critical steps. In the position shown in the third step (Rugby shortcut), open a command prompt. To do this: Click on File — open a command prompt — open a command prompt as an administrator.

Enter the following command to enter:

for %f in (*.*) do copy /b “%f” +,,

The purpose of this step is to clean up the tile cache. You can try it a few more times, or unpin the tile and reattach it to the start screen. The effect is shown below, you will find that the background color of the tile has changed.

It is necessary to explain some of the above code here:

ForegroundText indicates the color of the tile title, there are two kinds: light for white, dark for gray; >

BackgroundColor represents the background color, here is the hexadecimal representation of the RGB color value;

ShowNameOnSquare150x150Logo represents whether to display the tile name;

If you still want to modify the tile icon , you can add the following two attributes:

Square150x150Logo

Square70x70Logo

The above two attributes represent icons in medium and small size states, and the attribute values ​​are relative to the icon file. path.

For example, create a folder named image in the same directory as pcmaster.exe, and put your own icon file into the folder. As shown below, here is an icon with the format png, the full name is tweakcube.png.

If the homemade icon size is larger than the tile size, it will eventually overwrite the background color. Finally, attach the complete code of pcmaster.VisualElementsManifest.xml:

"?xml version=“1.0” encoding=“utf-8”?"

"Application xmlns:xsi= <;http://www.w3.org/2001/XMLSchema-instance”"

"VisualElements

ForegroundText=“light”

BackgroundColor=“# 49825a”

ShowNameOnSquare150x150Logo=“on”

Square150x150Logo=“image\\tweakcube.png”

Square70x70Logo=“image\\tweakcube.png”

》///VisualElements

"/Application"

After the modification, perform the sixth step to clear the cache (or re-fix the tile), and finally get the following effect:

The above is Win10 start menu background and icon method, through this method we can modify the background color of the start menu, replace the icon of the start menu tile and so on.

Copyright © Windows knowledge All Rights Reserved