Unpin Start 398 B

123456789
  1. #https://superuser.com/questions/1068382/how-to-remove-all-the-tiles-in-the-windows-10-start-menu
  2. #Unpins all tiles from the Start Menu
  3. Write-Output "Unpinning all tiles from the start menu"
  4. (New-Object -Com Shell.Application).
  5. NameSpace('shell:::{4234d49b-0245-4df3-b780-3893943456e1}').
  6. Items() |
  7. %{ $_.Verbs() } |
  8. ?{$_.Name -match 'Un.*pin from Start'} |
  9. %{$_.DoIt()}