Você pode usar o PowerShell para gerenciar seus aplicativos. Tente isto:
Get-Command -module appx /* gets the commands you can use to manipulate win8 apps */
Get-AppxPackage * | ft name /* lists the names of all apps installed on the machine */
Remove-AppxPackage 'NameOfApp' /* removes the app */