WARNING – This will removal all items from the start menu. You will need to re-pin any that you would like back.

This is Recommend if you are logging in to the first time.

Open Powershell ISE

And do a new script and enter the following:

(New-Object -Com Shell.Application).
NameSpace(‘shell:::{4234d49b-0245-4df3-b780-3893943456e1}’).
Items() |
%{ $_.Verbs() } |
?{$_.Name -match ‘Un.*pin from Start’} |
%{$_.DoIt()}

 

Then run the script (press F5)