Package & Telemetry Removal Guide v1.0

Discussion in 'Windows 10' started by dobbelina, Aug 13, 2016.

  1. petok

    petok MDL Senior Member

    May 4, 2009
    340
    187
    10
    #61 petok, Sep 16, 2016
    Last edited by a moderator: Apr 20, 2017
    Hi
    I edited post now have this

    I create this
    Get-AppXPackage | Select Name
    Get-AppXPackage -AllUsers | Select Name
    Get-AppXProvisionedPackage -Online | Select Name

    then save in text file all.

    Next Uninstalled from current administrator user.

    Get-AppxPackage * | Remove-AppxPackage
    * - is application for remove

    Next step remove from all users and online.
    I use created list for all application remove
    Code:
    $ProvisionedAppPackageNames = @(
    "Microsoft.3DBuilder" 
    "Microsoft.BioEnrollment"
    "Microsoft.BingWeather"
    "Microsoft.Getstarted"
    "Microsoft.Messaging"
    "Microsoft.MicrosoftOfficeHub"
    "Microsoft.MicrosoftSolitaireCollection"
    "Microsoft.MicrosoftStickyNotes"
    "Microsoft.Office.OneNote"
    "Microsoft.OneConnect"
    "Microsoft.People"
    "Microsoft.SkypeApp"
    "Microsoft.Windows.Photos"Microsoft.WindowsAlarms               
    "Microsoft.WindowsCalculator"
    "Microsoft.WindowsCamera"
    "microsoft.windowscommunicationsapps"
    "Microsoft.WindowsFeedbackHub"
    "Microsoft.WindowsMaps"
    "Microsoft.WindowsSoundRecorder"
    "Microsoft.XboxApp"
    "Microsoft.XboxIdentityProvider"
    "Microsoft.ZuneMusic"
    "Microsoft.ZuneVideo"
    )
    
    foreach ($ProvisionedAppName in $ProvisionedAppPackageNames) {
        Get-AppxPackage -Name $ProvisionedAppName -AllUsers | Remove-AppxPackage
        Get-AppXProvisionedPackage -Online | where DisplayName -EQ $ProvisionedAppName | Remove-AppxProvisionedPackage -Online
    }

    Is this ok or need fixing?

    And now problem for me is for hidden and uninstall some other apps from this HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Component Based Servicing\Packages\ how to make best remove.
     
  2. dobbelina

    dobbelina MDL Senior Member

    Apr 2, 2009
    426
    526
    10
    #62 dobbelina, Sep 19, 2016
    Last edited: Sep 19, 2016
    (OP)
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  3. jose_marino

    jose_marino Guest

    Only way to remove telemetry from W10 is with NTLite. ;)
     
  4. thorin0815

    thorin0815 MDL Senior Member

    Jul 16, 2015
    472
    425
    10

    And with MSMG Toolkit and with Winreducer and with DISM. ;)
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  5. Mayjoko

    Mayjoko MDL Junior Member

    Oct 15, 2015
    59
    29
    0
    #65 Mayjoko, Sep 28, 2016
    Last edited by a moderator: Apr 20, 2017
  6. dobbelina

    dobbelina MDL Senior Member

    Apr 2, 2009
    426
    526
    10
    #66 dobbelina, Sep 29, 2016
    Last edited by a moderator: Apr 20, 2017
    (OP)
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  7. iec85433

    iec85433 MDL Novice

    Oct 6, 2016
    4
    1
    0
    What are the most commonly suggested packages and other parts of Win10 to be removed in order to maximize performance? As in reduce used up CPU time, RAM, disk space even network bandwidth.
    I don't need Cortana or it knowing where all my files are.
     
  8. wasd

    wasd MDL Junior Member

    Sep 13, 2011
    55
    12
    0
    Explain then.
     
  9. godwillgive

    godwillgive MDL Novice

    Apr 25, 2011
    13
    0
    0
    Could you elaborate better how NTLite work ?
     
  10. dhjohns

    dhjohns MDL Guru

    Sep 5, 2013
    3,262
    1,731
    120
    LOL. Everyone knows where your files are. It is what they do with them which counts. A search function enables your computer to find what you look for quickly.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  11. Tiger-1

    Tiger-1 MDL Guru

    Oct 18, 2014
    7,897
    10,733
    240
    @iec85433 I think you need help inside MDL ok so wait MSMG toolkit v.6.0 read how to and proceed all changes that you desired;still welcome to MDL:)
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  12. LiteOS

    LiteOS Windowizer

    Mar 7, 2014
    2,209
    982
    90
  13. wazzock

    wazzock MDL Senior Member

    Oct 22, 2016
    337
    187
    10
    Nice one dobbelina, page saved :)
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  14. KNARZ

    KNARZ MDL Addicted

    Oct 9, 2012
    895
    482
    30
    Not sure anymore if it wasn't intended from me not to use the * in the name. :g:
    But yeah the AskImage needed to be shifted, saw it after publishing it but was to lazy to fix it. ;) - good job.
     
  15. dobbelina

    dobbelina MDL Senior Member

    Apr 2, 2009
    426
    526
    10
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  16. vladvahnovanu

    vladvahnovanu MDL Novice

    Jul 1, 2015
    7
    0
    0
    Cannot download NSudo from it's source website...please help!?
     
  17. s1ave77

    s1ave77 Has left at his own request

    Aug 15, 2012
    16,104
    24,378
    340
    #78 s1ave77, Jan 28, 2017
    Last edited by a moderator: Apr 20, 2017
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  18. dobbelina

    dobbelina MDL Senior Member

    Apr 2, 2009
    426
    526
    10
    #79 dobbelina, Jan 29, 2017
    Last edited: Jan 29, 2017
    (OP)
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  19. 90

    90 MDL Member

    Aug 21, 2015
    107
    17
    10
    What the difference this and MSMG toolkit method?