anyway to remove windows 10 apps?

Discussion in 'Windows 10' started by DEBKOL35, Jul 21, 2015.

  1. DEBKOL35

    DEBKOL35 MDL Senior Member

    Joined:
    Mar 20, 2009
    Messages:
    285
    Likes Received:
    19
    Trophy Points:
    10
    I want to remove apps like xbox, cortana and some other useless mobile apps. Is there anyway? Win 8.1 let me uninstall them so easily ...but why no uninstall option in Win 10?
     
  2. followingsun

    followingsun MDL Novice

    Joined:
    Sep 1, 2012
    Messages:
    1
    Likes Received:
    0
    Trophy Points:
    0
    StartIsBack++ allow you to uninstall some Modern apps like Calculator, Mail, Alarm... but not Cortana, Settings, Store...
     
  3. moistbuns

    moistbuns MDL Novice

    Joined:
    Jan 30, 2015
    Messages:
    35
    Likes Received:
    6
    Trophy Points:
    0
    AFAIK

    C:\Windows\SystemApps

    Take Ownership to delete corresponding folders.
     
  4. AtomR

    AtomR MDL Member

    Joined:
    Oct 22, 2013
    Messages:
    249
    Likes Received:
    51
    Trophy Points:
    10
    Any reason for removing them? If you don't want them, then just ignore/don't use them. Simple.
     
  5. pisthai

    pisthai Imperfect Human

    Joined:
    Jul 29, 2009
    Messages:
    7,060
    Likes Received:
    2,158
    Trophy Points:
    240
    You could simply try to use the Right Click and if Uninstall is shown, that will works (for that Apps)! Other you could simply disable via Apps and Features!
     
  6. MrMagic

    MrMagic MDL Guru

    Joined:
    Feb 13, 2012
    Messages:
    6,020
    Likes Received:
    4,147
    Trophy Points:
    210

    Yes it does, or at least the uninstall option is there for those three, not tried uninstalling them
     
  7. Hlx

    Hlx MDL Junior Member

    Joined:
    May 15, 2014
    Messages:
    56
    Likes Received:
    14
    Trophy Points:
    0
    1. Start an Administrative Powershell window
    2. Run the command 'Get-AppxPackage | Select Name,PackageFullname' (This will list installed Metro apps displaying the Name and PackageFullname needed to uninstall)
    3. Locate XboxLive package
    4. Copy the 'PackageFullname'
    5. Type 'Remove-AppXPackage <PackageFullname>' (replace <PackageFullname> with the text you copied from the list) and hit enter
    6. Reboot
     
  8. dvbman

    dvbman MDL Junior Member

    Joined:
    Apr 23, 2015
    Messages:
    73
    Likes Received:
    31
    Trophy Points:
    0
    The best (and official) way is by dism. If you wanto to remove unremovable apps (like defender etc) you can try install_wim_tweak.exe.
     
  9. bay12

    bay12 MDL Junior Member

    Joined:
    Nov 30, 2014
    Messages:
    84
    Likes Received:
    13
    Trophy Points:
    0
    hello, i use this method since windows 8, but i noticed that using dism and install_wim_tweaker from command prompt in windows 10 is very slow...sometimes the cmd look like is sleeping and i need to send "enter" to "wake up". Did you noticed/had the same is issue or is only me?

    thanks
     
  10. it007

    it007 MDL Novice

    Joined:
    Apr 2, 2013
    Messages:
    14
    Likes Received:
    0
    Trophy Points:
    0
    I used power shell and command "Get-AppxPackage -AllUsers | Remove-AppxPackage" which worked nicely in Windows 8.1, but it seems it deleted the new Windows 10 store... Is there a command to redownload it, or do I have to reinstall?
     
  11. sXpTv

    sXpTv MDL Member

    Joined:
    Jul 14, 2014
    Messages:
    190
    Likes Received:
    41
    Trophy Points:
    10
    #11 sXpTv, Jul 21, 2015
    Last edited by a moderator: Apr 20, 2017
    Code:
    Get-AppxPackage -AllUsers | Remove-AppxPackage
    Code:
    Get-AppXProvisionedPackage -online | Remove-AppxProvisionedPackage –online
    This will delete all XAML Apps except the system stuff like Action-Center, Start Menu etc..
     
  12. sevenacids

    sevenacids MDL Addicted

    Joined:
    Aug 17, 2012
    Messages:
    669
    Likes Received:
    230
    Trophy Points:
    30
  13. it007

    it007 MDL Novice

    Joined:
    Apr 2, 2013
    Messages:
    14
    Likes Received:
    0
    Trophy Points:
    0
    #13 it007, Jul 21, 2015
    Last edited by a moderator: Apr 20, 2017
     
  14. RanCorX2

    RanCorX2 MDL Addicted

    Joined:
    Jul 19, 2009
    Messages:
    927
    Likes Received:
    492
    Trophy Points:
    30
    not everyone uses the store though.
     
  15. dippyweb

    dippyweb MDL Member

    Joined:
    Oct 3, 2011
    Messages:
    177
    Likes Received:
    175
    Trophy Points:
    10
    Just take ownership Program Files/WindowsApps folder and delete it ;) i did that too :p
     
  16. dvbman

    dvbman MDL Junior Member

    Joined:
    Apr 23, 2015
    Messages:
    73
    Likes Received:
    31
    Trophy Points:
    0
    I don't know beacause i always use it offline, directly on .wim .
     
  17. dhjohns

    dhjohns MDL Guru

    Joined:
    Sep 5, 2013
    Messages:
    3,275
    Likes Received:
    1,735
    Trophy Points:
    120
    Just reboot, format, and install Windows XP! You obviously don't want Windows 10.
     
  18. getsuga369

    getsuga369 MDL Junior Member

    Joined:
    Apr 14, 2015
    Messages:
    64
    Likes Received:
    17
    Trophy Points:
    0
    Use the below script just paste the text in the spoiler into notepad and run the script and select the app you want to remove..U can select all apps at once too :)

    Import-LocalizedData -BindingVariable Messages

    Function PSCustomErrorRecord
    {
    #This function is used to create a PowerShell ErrorRecord
    Param
    (
    [Parameter(Mandatory=$true,Position=1)][String]$ExceptionString,
    [Parameter(Mandatory=$true,Position=2)][String]$ErrorID,
    [Parameter(Mandatory=$true,Position=3)][System.Management.Automation.ErrorCategory]$ErrorCategory,
    [Parameter(Mandatory=$true,Position=4)][PSObject]$TargetObject
    )
    Process
    {
    $exception = New-Object System.Management.Automation.RuntimeException($ExceptionString)
    $customError = New-Object System.Management.Automation.ErrorRecord($exception,$ErrorID,$ErrorCategory,$TargetObject)
    return $customError
    }
    }

    Function RemoveAppxPackage
    {
    $index=1
    $apps=Get-AppxPackage
    #return entire listing of applications
    Write-Host "ID`t App name"
    foreach ($app in $apps)
    {
    Write-Host " $index`t $($app.name)"
    $index++
    }

    Do
    {
    $IDs=Read-Host -Prompt "Which Apps do you want to remove? `nInput their IDs and seperate IDs by comma"
    }
    While($IDs -eq "")

    #check whether input values are correct
    try
    {
    [int[]]$IDs=$IDs -split ","
    }
    catch
    {
    $errorMsg = $Messages.IncorrectInput
    $errorMsg = $errorMsg -replace "Placeholder01",$IDs
    $customError = PSCustomErrorRecord `
    -ExceptionString $errorMsg `
    -ErrorCategory NotSpecified -ErrorID 1 -TargetObject $pscmdlet
    $pscmdlet.WriteError($customError)
    return
    }

    foreach ($ID in $IDs)
    {
    #check id is in the range
    if ($ID -ge 1 -and $ID -le $apps.count)
    {
    $ID--
    #Remove each app
    $AppName=$apps[$ID].name

    Remove-AppxPackage -Package $apps[$ID] -ErrorAction SilentlyContinue
    if (-not(Get-AppxPackage -Name $AppName))
    {
    Write-host "$AppName has been removed successfully"
    }
    else
    {
    Write-Warning "Remove '$AppName' failed! This app is part of Windows and cannot be uninstalled on a per-user basis."
    }
    }
    else
    {
    $errorMsg = $Messages.WrongID
    $errorMsg = $errorMsg -replace "Placeholder01",$ID
    $customError = PSCustomErrorRecord `
    -ExceptionString $errorMsg `
    -ErrorCategory NotSpecified -ErrorID 1 -TargetObject $pscmdlet
    $pscmdlet.WriteError($customError)
    }
    }
    }

    RemoveAppxPackage
     
  19. DEBKOL35

    DEBKOL35 MDL Senior Member

    Joined:
    Mar 20, 2009
    Messages:
    285
    Likes Received:
    19
    Trophy Points:
    10
    what extension should I put for the text file?
     
  20. niatat

    niatat MDL Novice

    Joined:
    Jul 5, 2015
    Messages:
    4
    Likes Received:
    1
    Trophy Points:
    0
    deliteAPP.ps1