The WinReducer Forum
Would you like to react to this message? Create an account in a few clicks or log in to continue.

The WinReducer ForumLog in

FORUM

description[IMPLEMENTED] [EX100 - All versions] Unpin Paint, Store and Edge from Starmenu Empty[IMPLEMENTED] [EX100 - All versions] Unpin Paint, Store and Edge from Starmenu

more_horiz
Hi Winter!

Can you please add several tweaks to unpin Paint, Microsoft Store and Edge from the starmenu?

Here are some suggestions for the coding:

in powershell:
-----------------------------------------------------------------------------------------------------
function Pin-App {    param(
       [string]$appname,
       [switch]$unpin
   )
   try{
       if ($unpin.IsPresent){
           ((New-Object -Com Shell.Application).NameSpace('shell:::{4234d49b-0245-4df3-b780-3893943456e1}').Items() | ?{$_.Name -eq $appname}).Verbs() | ?{$_.Name.replace('&','') -match 'Von "Start" lösen|Unpin from Start'} | %{$_.DoIt()}
           return "App '$appname' unpinned from Start"
       }else{
           ((New-Object -Com Shell.Application).NameSpace('shell:::{4234d49b-0245-4df3-b780-3893943456e1}').Items() | ?{$_.Name -eq $appname}).Verbs() | ?{$_.Name.replace('&','') -match 'An "Start" anheften|Pin to Start'} | %{$_.DoIt()}
           return "App '$appname' pinned to Start"
       }
   }catch{
       Write-Error "Error Pinning/Unpinning App! (App-Name correct?)"
   }
}

Pin-App "Edge" -unpin
-----------------------------------------------------------------------------------------------------
Thank you very much,
Markus

description[IMPLEMENTED] [EX100 - All versions] Unpin Paint, Store and Edge from Starmenu EmptyRe: [IMPLEMENTED] [EX100 - All versions] Unpin Paint, Store and Edge from Starmenu

more_horiz
ADDED in v2.1.3.1 [VIP] and v2.1.4.0 [ALL] !

Hello Markus [IMPLEMENTED] [EX100 - All versions] Unpin Paint, Store and Edge from Starmenu Icon_smile

Just a question for you, are you a mind reader [IMPLEMENTED] [EX100 - All versions] Unpin Paint, Store and Edge from Starmenu Icon_smile Because I just validated these options yesterday [IMPLEMENTED] [EX100 - All versions] Unpin Paint, Store and Edge from Starmenu Icon_wink

Have a great day !

description[IMPLEMENTED] [EX100 - All versions] Unpin Paint, Store and Edge from Starmenu EmptyRe: [IMPLEMENTED] [EX100 - All versions] Unpin Paint, Store and Edge from Starmenu

more_horiz
Great to hear that. Actually this was a request I had a very long time on my list, but just never wrote it to you. Smile But if you could manage the other tweaks (one column start menu and the one drive reg key) aswell this would be just awesome. Smile
privacy_tip Permissions in this forum:
You cannot reply to topics in this forum