Small question about windows 8.1

Discussion in 'Windows 8' started by Michel, Feb 3, 2015.

  1. Michel

    Michel MDL Expert

    Jul 29, 2009
    1,860
    261
    60
    How to delete the stock apps like the pdf format, music, picture viewer ?

    I know i have read it sometime ago a easy way to delete those in 1 time
     
  2. abbodi1406

    abbodi1406 MDL KB0000001

    Feb 19, 2011
    16,142
    84,325
    340
    #3 abbodi1406, Feb 3, 2015
    Last edited by a moderator: Apr 20, 2017
    Open Windows PowerShell as admin and run:
    Code:
    Get-AppxPackage | % {if (!($_.IsFramework -or $_.PublisherId -eq "cw5n1h2txyewy")) {$_}} | Remove-AppxPackage
    then:
    Code:
    Get-AppxProvisionedPackage -Online | Remove-AppxProvisionedPackage –Online
     
  3. Michel

    Michel MDL Expert

    Jul 29, 2009
    1,860
    261
    60
    I mean if i have a mp3 or bitmap that it does not use those crappy metro apps by default. I already have startisback installed so i dont see anything of windows 8.1 metro :clap:
     
  4. brucelex

    brucelex MDL Novice

    Aug 7, 2012
    7
    0
    0
    Ran into similar problem. Thanks for advice guys