Windows 10 Start menu wrong icon
I have 2 apps installed: Mozilla Firefox and Tor Browser.
Tor Browser is a Firefox based browser and has the same name of its executable: firefox.exe.
The problem is that the Start menu started to show me the same icons for both apps and I don't know how to fix this.
It worked fine for a while, but got broken for an unknown reason.
Tor app (firefox.exe) and Firefox browser (firefox.exe) definitely has different icons. But....
windows-10
add a comment |
I have 2 apps installed: Mozilla Firefox and Tor Browser.
Tor Browser is a Firefox based browser and has the same name of its executable: firefox.exe.
The problem is that the Start menu started to show me the same icons for both apps and I don't know how to fix this.
It worked fine for a while, but got broken for an unknown reason.
Tor app (firefox.exe) and Firefox browser (firefox.exe) definitely has different icons. But....
windows-10
1
Two possible ways, try to rebuild icon cache in Windows explorer. Or delete the shortcut of Tor browser in Start Menu folder and replace it with a new one.
– Biswapriyo
Aug 5 '17 at 21:18
1
How to rebuild the cache? Removing shortcut and creating a new one pointing to a different location did not help.
– Alexander Dyagilev
Aug 9 '17 at 6:08
1
See this article.
– Biswapriyo
Aug 9 '17 at 13:43
Unfortunately, this did not help either.
– Alexander Dyagilev
Aug 13 '17 at 11:48
Some relevant information from the Chrome team (who are dealing with the same problem with their.lnk
files for Chrome Apps) can be found here.
– Ernest3.14
Jan 3 '18 at 22:03
add a comment |
I have 2 apps installed: Mozilla Firefox and Tor Browser.
Tor Browser is a Firefox based browser and has the same name of its executable: firefox.exe.
The problem is that the Start menu started to show me the same icons for both apps and I don't know how to fix this.
It worked fine for a while, but got broken for an unknown reason.
Tor app (firefox.exe) and Firefox browser (firefox.exe) definitely has different icons. But....
windows-10
I have 2 apps installed: Mozilla Firefox and Tor Browser.
Tor Browser is a Firefox based browser and has the same name of its executable: firefox.exe.
The problem is that the Start menu started to show me the same icons for both apps and I don't know how to fix this.
It worked fine for a while, but got broken for an unknown reason.
Tor app (firefox.exe) and Firefox browser (firefox.exe) definitely has different icons. But....
windows-10
windows-10
edited Aug 13 '17 at 15:10
Alexander Dyagilev
asked Aug 5 '17 at 21:14
Alexander DyagilevAlexander Dyagilev
1135
1135
1
Two possible ways, try to rebuild icon cache in Windows explorer. Or delete the shortcut of Tor browser in Start Menu folder and replace it with a new one.
– Biswapriyo
Aug 5 '17 at 21:18
1
How to rebuild the cache? Removing shortcut and creating a new one pointing to a different location did not help.
– Alexander Dyagilev
Aug 9 '17 at 6:08
1
See this article.
– Biswapriyo
Aug 9 '17 at 13:43
Unfortunately, this did not help either.
– Alexander Dyagilev
Aug 13 '17 at 11:48
Some relevant information from the Chrome team (who are dealing with the same problem with their.lnk
files for Chrome Apps) can be found here.
– Ernest3.14
Jan 3 '18 at 22:03
add a comment |
1
Two possible ways, try to rebuild icon cache in Windows explorer. Or delete the shortcut of Tor browser in Start Menu folder and replace it with a new one.
– Biswapriyo
Aug 5 '17 at 21:18
1
How to rebuild the cache? Removing shortcut and creating a new one pointing to a different location did not help.
– Alexander Dyagilev
Aug 9 '17 at 6:08
1
See this article.
– Biswapriyo
Aug 9 '17 at 13:43
Unfortunately, this did not help either.
– Alexander Dyagilev
Aug 13 '17 at 11:48
Some relevant information from the Chrome team (who are dealing with the same problem with their.lnk
files for Chrome Apps) can be found here.
– Ernest3.14
Jan 3 '18 at 22:03
1
1
Two possible ways, try to rebuild icon cache in Windows explorer. Or delete the shortcut of Tor browser in Start Menu folder and replace it with a new one.
– Biswapriyo
Aug 5 '17 at 21:18
Two possible ways, try to rebuild icon cache in Windows explorer. Or delete the shortcut of Tor browser in Start Menu folder and replace it with a new one.
– Biswapriyo
Aug 5 '17 at 21:18
1
1
How to rebuild the cache? Removing shortcut and creating a new one pointing to a different location did not help.
– Alexander Dyagilev
Aug 9 '17 at 6:08
How to rebuild the cache? Removing shortcut and creating a new one pointing to a different location did not help.
– Alexander Dyagilev
Aug 9 '17 at 6:08
1
1
See this article.
– Biswapriyo
Aug 9 '17 at 13:43
See this article.
– Biswapriyo
Aug 9 '17 at 13:43
Unfortunately, this did not help either.
– Alexander Dyagilev
Aug 13 '17 at 11:48
Unfortunately, this did not help either.
– Alexander Dyagilev
Aug 13 '17 at 11:48
Some relevant information from the Chrome team (who are dealing with the same problem with their
.lnk
files for Chrome Apps) can be found here.– Ernest3.14
Jan 3 '18 at 22:03
Some relevant information from the Chrome team (who are dealing with the same problem with their
.lnk
files for Chrome Apps) can be found here.– Ernest3.14
Jan 3 '18 at 22:03
add a comment |
1 Answer
1
active
oldest
votes
The icon and the background of the start menu tile is determined by the ".VisualElementsManifest.xml
" file. Tor Browser uses the wrong icon because Tor uses the same manifest as Firefox.
To fix it, go to your Tor directory, where firefox.exe
(Tor Browser) is placed. There you should find "firefox.VisualElementsManifest.xml
". (You can see that the logos linked in the file are of Firefox.) You can simply delete it, or rename it to something like "firefox.VisualElementsManifest_.xml
". Without the manifest file, the tile will use the default background color and a small icon of the program. Alternatively, you can modify the manifest file and the image files it directs to, to choose a custom background color and icon.
This doesn't solve it immediately, as the tile info is cached. You can try removing the tile, renaming the shortcut in the start menu and then readding the tile, but I have found that it doesn't always work. Instead, use the method described here to reload the cache, by executing the following in Powershell:
(ls "$env:appdatamicrosoftwindowsstart menuprogramsTor Browser.lnk").lastwritetime = get-date
Change the shortcut name if yours is different, or if it is in programdata instead of appdata. After that, readd the tile.
NICE ANSWER ! Please keep it up, our site grows from the contributions of members like you!
– 123456789123456789123456789
Dec 21 '17 at 17:40
New link is "Start Tor Browser.lnk" now
– raciasolvo
Dec 15 '18 at 9:35
add a comment |
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1238082%2fwindows-10-start-menu-wrong-icon%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
The icon and the background of the start menu tile is determined by the ".VisualElementsManifest.xml
" file. Tor Browser uses the wrong icon because Tor uses the same manifest as Firefox.
To fix it, go to your Tor directory, where firefox.exe
(Tor Browser) is placed. There you should find "firefox.VisualElementsManifest.xml
". (You can see that the logos linked in the file are of Firefox.) You can simply delete it, or rename it to something like "firefox.VisualElementsManifest_.xml
". Without the manifest file, the tile will use the default background color and a small icon of the program. Alternatively, you can modify the manifest file and the image files it directs to, to choose a custom background color and icon.
This doesn't solve it immediately, as the tile info is cached. You can try removing the tile, renaming the shortcut in the start menu and then readding the tile, but I have found that it doesn't always work. Instead, use the method described here to reload the cache, by executing the following in Powershell:
(ls "$env:appdatamicrosoftwindowsstart menuprogramsTor Browser.lnk").lastwritetime = get-date
Change the shortcut name if yours is different, or if it is in programdata instead of appdata. After that, readd the tile.
NICE ANSWER ! Please keep it up, our site grows from the contributions of members like you!
– 123456789123456789123456789
Dec 21 '17 at 17:40
New link is "Start Tor Browser.lnk" now
– raciasolvo
Dec 15 '18 at 9:35
add a comment |
The icon and the background of the start menu tile is determined by the ".VisualElementsManifest.xml
" file. Tor Browser uses the wrong icon because Tor uses the same manifest as Firefox.
To fix it, go to your Tor directory, where firefox.exe
(Tor Browser) is placed. There you should find "firefox.VisualElementsManifest.xml
". (You can see that the logos linked in the file are of Firefox.) You can simply delete it, or rename it to something like "firefox.VisualElementsManifest_.xml
". Without the manifest file, the tile will use the default background color and a small icon of the program. Alternatively, you can modify the manifest file and the image files it directs to, to choose a custom background color and icon.
This doesn't solve it immediately, as the tile info is cached. You can try removing the tile, renaming the shortcut in the start menu and then readding the tile, but I have found that it doesn't always work. Instead, use the method described here to reload the cache, by executing the following in Powershell:
(ls "$env:appdatamicrosoftwindowsstart menuprogramsTor Browser.lnk").lastwritetime = get-date
Change the shortcut name if yours is different, or if it is in programdata instead of appdata. After that, readd the tile.
NICE ANSWER ! Please keep it up, our site grows from the contributions of members like you!
– 123456789123456789123456789
Dec 21 '17 at 17:40
New link is "Start Tor Browser.lnk" now
– raciasolvo
Dec 15 '18 at 9:35
add a comment |
The icon and the background of the start menu tile is determined by the ".VisualElementsManifest.xml
" file. Tor Browser uses the wrong icon because Tor uses the same manifest as Firefox.
To fix it, go to your Tor directory, where firefox.exe
(Tor Browser) is placed. There you should find "firefox.VisualElementsManifest.xml
". (You can see that the logos linked in the file are of Firefox.) You can simply delete it, or rename it to something like "firefox.VisualElementsManifest_.xml
". Without the manifest file, the tile will use the default background color and a small icon of the program. Alternatively, you can modify the manifest file and the image files it directs to, to choose a custom background color and icon.
This doesn't solve it immediately, as the tile info is cached. You can try removing the tile, renaming the shortcut in the start menu and then readding the tile, but I have found that it doesn't always work. Instead, use the method described here to reload the cache, by executing the following in Powershell:
(ls "$env:appdatamicrosoftwindowsstart menuprogramsTor Browser.lnk").lastwritetime = get-date
Change the shortcut name if yours is different, or if it is in programdata instead of appdata. After that, readd the tile.
The icon and the background of the start menu tile is determined by the ".VisualElementsManifest.xml
" file. Tor Browser uses the wrong icon because Tor uses the same manifest as Firefox.
To fix it, go to your Tor directory, where firefox.exe
(Tor Browser) is placed. There you should find "firefox.VisualElementsManifest.xml
". (You can see that the logos linked in the file are of Firefox.) You can simply delete it, or rename it to something like "firefox.VisualElementsManifest_.xml
". Without the manifest file, the tile will use the default background color and a small icon of the program. Alternatively, you can modify the manifest file and the image files it directs to, to choose a custom background color and icon.
This doesn't solve it immediately, as the tile info is cached. You can try removing the tile, renaming the shortcut in the start menu and then readding the tile, but I have found that it doesn't always work. Instead, use the method described here to reload the cache, by executing the following in Powershell:
(ls "$env:appdatamicrosoftwindowsstart menuprogramsTor Browser.lnk").lastwritetime = get-date
Change the shortcut name if yours is different, or if it is in programdata instead of appdata. After that, readd the tile.
answered Dec 21 '17 at 14:37
Debie DownerDebie Downer
13614
13614
NICE ANSWER ! Please keep it up, our site grows from the contributions of members like you!
– 123456789123456789123456789
Dec 21 '17 at 17:40
New link is "Start Tor Browser.lnk" now
– raciasolvo
Dec 15 '18 at 9:35
add a comment |
NICE ANSWER ! Please keep it up, our site grows from the contributions of members like you!
– 123456789123456789123456789
Dec 21 '17 at 17:40
New link is "Start Tor Browser.lnk" now
– raciasolvo
Dec 15 '18 at 9:35
NICE ANSWER ! Please keep it up, our site grows from the contributions of members like you!
– 123456789123456789123456789
Dec 21 '17 at 17:40
NICE ANSWER ! Please keep it up, our site grows from the contributions of members like you!
– 123456789123456789123456789
Dec 21 '17 at 17:40
New link is "Start Tor Browser.lnk" now
– raciasolvo
Dec 15 '18 at 9:35
New link is "Start Tor Browser.lnk" now
– raciasolvo
Dec 15 '18 at 9:35
add a comment |
Thanks for contributing an answer to Super User!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1238082%2fwindows-10-start-menu-wrong-icon%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
Two possible ways, try to rebuild icon cache in Windows explorer. Or delete the shortcut of Tor browser in Start Menu folder and replace it with a new one.
– Biswapriyo
Aug 5 '17 at 21:18
1
How to rebuild the cache? Removing shortcut and creating a new one pointing to a different location did not help.
– Alexander Dyagilev
Aug 9 '17 at 6:08
1
See this article.
– Biswapriyo
Aug 9 '17 at 13:43
Unfortunately, this did not help either.
– Alexander Dyagilev
Aug 13 '17 at 11:48
Some relevant information from the Chrome team (who are dealing with the same problem with their
.lnk
files for Chrome Apps) can be found here.– Ernest3.14
Jan 3 '18 at 22:03