-
-
Notifications
You must be signed in to change notification settings - Fork 617
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Option to remove individual pinned apps from the startmenu (ie. Grammarly and Spotify) #41
Comments
Heya, Could you confirm that they're actually installed on the system? My guess is that they're just pinned to the start menu, and will not be installed until you click them. Similar to your other issue #40. |
They are not installed, but the uninstall option is available when right click on them. EDIT: Spotify is installed and exe is located in the AppData folder, it offers an uninstall option. LinkedIn was downloading something when clicked but it did not open, uninstall was available. Grammary does not offer an uninstall option and points to Microsoft Store. |
I have done some additional testing by doing a few fresh installs. In those installs Grammarly, LinkedIn, Spotify, and Luminar Neo do show up in the start menu, but none are installed. I also couldn't find any files related to Spotify, or any of the other 3 apps. |
Hi, I did some testing also. If I understand correctly, your script removes apps for all users. When I create a new user on the same machine, all those apps are listed in Start Menu, but are not actually installed. Right click on them offers uninstall option, but what it actually does is to remove the pinned item. p.s. I found a new app Journal which is not pinned in Start Menu but it is listed under All apps. It can be uninstalled via Powershell using Microsoft.MicrosoftJournal manifes name. |
Exactly right, the UI does act as if they are installed (as they show an uninstall option), but they're not. The annoying part is that these app links are, at least for a script like this, much harder to remove than the actual apps if they were installed. I'm looking into ways to have this script be able to unpin individual apps, but right now the only way I have found that works is replacing the whole start menu layout all together.
I'll be adding support for this app to the script, thanks for bringing that to my attention 😀 |
I've renamed the issue (and definitely didn't make a spelling mistake) to better reflect the feature requested. |
Hi, I did some testing also. If I understand correctly, your script removes apps for all users. When I create a new user on the same machine, all those apps are listed in Start Menu, but are not actually installed. Right click on them offers uninstall option, but what it actually does is to remove the pinned item. p.s. I found a new app Journal which is not pinned in Start Menu but it is listed under All apps. It can be uninstalled via Powershell using Microsoft.MicrosoftJournal manifes |
That's correct, the items are not installed so they cannot be removed. They only exist as a pinned item in the start menu binary. This binary (start2.bin) is stored per user at: As the file is a binary it cannot be edited easily. That's why Win11Debloat can only clear the entire start menu by replacing this file with another.
Win11Debloat should be able to uninstall this already. It's actually marked to be uninstalled as part of the default setting. |
@Raphire Instead of using start2.bin from another user, you could use Export-StartLayout and Import-StartLayout. That would make it easier for people to review and change over a bin file. https://learn.microsoft.com/en-us/powershell/module/startlayout/import-startlayout You could also have a "remove" function that exports the current start menu, opens the json and removes the lines for Spotify and saves it, and then imports the modified layout. Cost/benefit might be low on building that, but by working with structured data that Posh can understand it opens up more possibilities. These json files are also how Intune works to apply start menu configs, so you'd be in good company. |
Unfortunately I don't think the It seems that for Windows 11 the layout you get from the
If there is a different way to apply a Start layout I'd be happy to implement it into the script. |
Good point, I didn't know this didn't work for Windows 11 sorry. |
No worries! I appreciate you taking the time to look into this issue, it's just a shame Microsoft locked simple stuff like this down. |
Hi, can you implement an option to remove Grammarly and Spotify?
The text was updated successfully, but these errors were encountered: