Basically in an effort to configure and customise the start screen for our Windows 8/2012 users I have resorted to creating shortcuts and copying the layout to each user. With powershell I am able to create my links and shortcuts by running the following:
$ws = New-Object -comObject WScript.Shell
$Dt = $ws.SpecialFolders.item("StartMenu\Wes")
$URL = $ws.CreateShortcut($Dt + "\MYWEBSITE.url")
$URL.TargetPath = "http://MYWEB.MYDOMAIN.com"
$URL.Save()
This runs, and if I was to update a url it will also update it in the start screen.
My question is, does anyone know how i can change it so that it removes a shortcut?