# ExplorerPatcher 通用磁贴添加方法总结 | General Method for Adding Tiles with ExplorerPatcher #4311
zhaowendao2005
started this conversation in
Show and tell
Replies: 0 comments
-
请问文件夹或文件夹的快捷方式怎么添加到磁贴 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
系统: Win23H2
System: Win23H2
本方案用于解决无法通过常规方式添加磁贴的问题。
This guide is for scenarios where tiles cannot be added through normal methods.
问题描述与解决方案 | Problem Description and Solution
首先,经过试验发现,如果目标程序或其快捷方式存在于以下两个目录中,那么即使右键选择“固定到‘开始’菜单”,也大概率无法成功添加为磁贴:
C:\Users\your id\AppData\Roaming\Microsoft\Windows\Start Menu\Programs
C:\ProgramData\Microsoft\Windows\Start Menu\Programs
First, through experimentation, it has been found that if the target program or its shortcut exists in the following two directories, even if you right-click and select "Pin to Start", it will likely not be successfully added as a tile:
C:\Users\your id\AppData\Roaming\Microsoft\Windows\Start Menu\Programs
C:\ProgramData\Microsoft\Windows\Start Menu\Programs
核心思路: 如果一个
.exe
文件的快捷方式不存在于上述两个目录中,那么就可以直接通过右键点击该快捷方式,选择“固定到‘开始’菜单”来添加磁贴。Core Idea: However, if a shortcut to an
.exe
file does not exist in these two directories, you can directly right-click the shortcut and select "Pin to Start" to add it as a tile.技巧提示:
.exe
的文件均有效。例如,你可以将任意文件的后缀临时更改为.exe
,将其添加到磁贴后,再进入开始菜单,右键该磁贴,选择“打开文件位置”,并将对应快捷方式的后缀名改回原来的格式。Tips:
.exe
extension. For example, you can temporarily change the extension of any file to.exe
, add it as a tile, then go to the Start Menu, right-click the tile, select "Open file location," and change the extension of the corresponding shortcut back to its original format.疑难排解:
.exe
文件所在的上一级文件夹名称是否与快捷方式的“起始位置”相同。如果不同,尝试将它们修改为一致(建议修改快捷方式的“起始位置”以匹配.exe
所在的文件夹)。.txt
文件的后缀名改为.exe
来添加到磁贴,之后可以修改磁贴对应快捷方式的图标,以此在开始菜单添加图片进行装饰。Troubleshooting:
.exe
file (specified in the shortcut's "Target" field) is the same as the path in the shortcut's "Start in" field. If they are different, try making them identical (it's recommended to modify the "Start in" field of the shortcut to match the folder containing the.exe
)..txt
file to.exe
to add it as a tile. Afterward, you can change the icon of the tile's corresponding shortcut to decorate your Start Menu with images.参考资料 | References:
Edge 网页应用快捷方式的处理 | Handling Shortcuts for Web Apps Installed via Edge
对于使用 Microsoft Edge 浏览器“将网页作为应用安装”功能创建的快捷方式,可以按以下步骤操作:
For shortcuts created using Microsoft Edge's "Install this site as an app" feature, follow these steps:
直接选择“固定到‘开始’菜单”通常不会在磁贴区域显示。
Simply selecting "Pin to Start" usually won't make it appear as a tile.
将该网页应用保存为桌面快捷方式。
Save the web app as a desktop shortcut.
右键点击桌面快捷方式,选择“属性”,复制“目标”链接。
Right-click the desktop shortcut, select "Properties," and copy the "Target" link.
例如 (Example):
创建一个新的文本文档,粘贴以下内容:
Create a new text document and paste the following content:
注意: 将
[此处粘贴你复制的Edge应用目标路径]
替换为第 3 步中复制的实际路径。Note: Replace
[Paste your copied Edge app target path here]
with the actual path copied in step 3.保存该文本文档,并将其后缀名从
.txt
修改为.exe
。Save the text document and change its extension from
.txt
to.exe
.右键点击这个新创建的
.exe
文件,选择“固定到‘开始’菜单”。此时应该能看到一个新的磁贴出现。Right-click this newly created
.exe
file and select "Pin to Start." You should now see a new tile.将该
.exe
文件的后缀名修改为.vbs
。Change the extension of this
.exe
file back to.vbs
.右键点击开始菜单中新添加的磁贴,选择“更多” > “打开文件位置”,找到该磁贴对应的快捷方式。
Right-click the newly added tile in the Start Menu, select "More" > "Open file location" to find the shortcut corresponding to the tile.
右键点击该快捷方式,选择“属性”,将其“目标”路径修改为指向你创建的
.vbs
文件。Right-click this shortcut, select "Properties," and change its "Target" path to point to the
.vbs
file you created.现在,你就可以直接点击磁贴来访问对应的网页了。
Now, you can click the tile to directly access the corresponding webpage.
图标库推荐 | Recommended Icon Library
推荐一个图标库,登录后即可免费下载图标,资源很全,质量很高:
Here is a recommended icon library where you can download icons for free after logging in. It has a comprehensive collection and high-quality icons:
Beta Was this translation helpful? Give feedback.
All reactions