Has anyone found a working solution to unpin Internet Explorer (and other apps) from the Taskbar in Win 10 B20H2 / 21H2?
I tryed ALOT of the solutions in google top searches, but none seems to work with Win10 B20H2.
Export and import of the layout xml is not an option.
They suggest this script, but for me it doesn't work - it executes and returns no errors, but doesn't unpin the shortcut:
$appname = "Microsoft Store" ((New-Object -Com Shell.Application).NameSpace('shell:::{4234d49b-0245-4df3-b780-3893943456e1}').Items() | ?{$.Name -eq $appname}).Verbs() | ?{$.Name.replace('&','') -match 'Unpin from taskbar'} | %{$_.DoIt(); $exec = $true}