-
I now see that the Windows 10 start menu has got a really nice look, a brilliant job I must say. 👍🏼 My problem is that I can't pin new places from the Weather app. Removing some went (of course) well but now I want to be able to add some new places. (Works on Windows 11 start menu, without live tiles, that is.) Have looked through the forum but haven't found any answer. Is there any trick to make this work? In fact, I don't know where the pinned apps are specified, have to Bing I suppose, but hoped this would work anyway. Any tips on how to pin live tiles from the Weather app on Windows 10 start menu? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
I'd like to know this too, for pinning different countries from the Clock app |
Beta Was this translation helpful? Give feedback.
-
tl;dr Skip to last bullet point for a workaround that works for now. I explained in a couple of places already. From what I have learnt: -> The Windows 11 Start menu uses a slightly different tiles storage back-end than the Windows 10 Start menu. Technically, the newer -> To pin stuff from File Explorer to the Windows 10 menu, ExplorerPatcher offers a shortcut in "Properties - Start menu - Pin tiles to Windows 10 Start menu from File Explorer". This opens a new File Explorer window you can use to locate whatever you'd like to pin there; right click and choose "Pin to Start". if it doesn't work the first time, do it once more, it eventually works. This window is special in that it is hosted in a separate instance of -> Of course, from a technical standpoint, the proper solution is to patch the newer DLL to have it use the old storage backend when the Windows 10 Start menu is enabled. This is problematic for a number of reasons. As -> Something that has real chances of actually working though is to determine which component that -> To determine which component is responsible for that, one has to query the registry. Of interest are the following paths, in particular:
This represent the registry for COM and Windows Runtime objects, respectively. The system uses entries in these keys to determine which library hosts which component. Overrides have to be made here, redirecting things from the system's -> As a temporary workaround that I have tested and works, you can do this:
-> Why I don't recommend leaving the old library in place? Besides Windows Update which will overwrite it anyway on the next update, we don't really know if it works well. With how opaque everything is, in some scenario it might fuck something up that they changed and the old library doesn't have a clue about. For these concerns, it's best to minimize the time using this exotic config, in my opinion. Ofc, it's your computer and your knowledge, and progress is done via experimentation, so take this as a reminder of what might happen. It might as well be totally fine, for now at least, to run daily like that, I simply don't have a definite answer here. -> Things will pin. Will they work? Live tiles I mean. Idk. Stuff seems pretty broken still. Or maybe when they update the apps to make them look like Windows 11, they take out live tiles support, since the new Start features just useless icons...? Idk really, I simply haven't coded these things, I just look at them from the outside, same as you do. The live tile for Weather seems to work, so there's still some support left. Idk. -> Tbh, personally, the most I have used these live tiles was for weather. Which now I have replaced with the weather widget. Other than that, I took the time to enable this Windows 10 Start menu because it looked doable from what I have researched previously and liked its layout more (app list and an area to pin some apps on the same page makes too much sense). I don't like locking myself to using proprietary things that only one party controls, and Windows 10 Start and live tiles are and were just that. Don't get locked into using proprietary ecosystems. Sure, use them, but don't become their prisoners. Don't let momentary convenience win over long time actual freedom. Why? You have the example here: when they feel like it, the owner walks away, brakes everything and you're left scratching your head, they don't care. The black box is gigantic, takes ages to fully grasp. My advice, at its core, is the same as always - if you relied on these Windows 10 specific things so much, best is to stay on 10, at least as long as those work there (the apps will eventually become outdated and the cloud backends they use will be shutdown and so will be unable to feed them data). But really, I don't advise that - instead, use some browser web page with widgets, idk, there should be plenty of things on GitHub, something that's open, and add data sources there. Browsers will always work, and open things are in many cases easier to follow, understand, maintain, update and fix, by you or the community, as opposed to these black boxes that you have no control on. I bet you in 10 years they will throw the Windows 11 shell to the trashcan again, if they still care for the Windows as an OS by then. |
Beta Was this translation helpful? Give feedback.
tl;dr Skip to last bullet point for a workaround that works for now.
I explained in a couple of places already. From what I have learnt:
-> The Windows 11 Start menu uses a slightly different tiles storage back-end than the Windows 10 Start menu.
-> Pinning to Start is intermediated by
StartTileData.dll
, as well as other things probably.-> In Windows 11, the system
StartTileData.dll
inC:\Windows\System32
ties to the newer backend that pins stuff to the Windows 11 menu.-> This is the reason why pinning doesn't work from Windows Search, Clock, Weather and what not out of the box, as those simply request the
StartTileData
component (and some "thing" from it - this implements a ton of stuf…