Commit f07a2ad6 authored by Christof Schulze's avatar Christof Schulze 😎
Browse files

found solution to remove Apps for real (-online)

parent 06c3d0d7
Loading
Loading
Loading
Loading
+7 −2
Original line number Diff line number Diff line
# Remove MS Wifi services

  # To uninstall Microsoft Wi-Fi:
  Get-AppxPackage -AllUsers -Name *connectivitystore* | remove-appxpackage
  Get-AppxPackage -AllUsers -Name *connectivitystore* | Remove-AppxPackage

  #To uninstall Paid Wi-Fi & Cellular:
  Get-AppxPackage -AllUsers -Name *oneconnect* | remove-appxpackage
  Get-AppxPackage -AllUsers -Name Microsoft.OneConnect* | Remove-AppxPackage



#  Get-appxprovisionedpackage –online | where-object {$_.PackageName –like '*connectivitystore*'} | Remove-Appxprovisionedpackage –online
  Get-appxprovisionedpackage online | where-object {$_.PackageName like 'Microsoft.OneConnect*'} | Remove-Appxprovisionedpackage online
+37 −6
Original line number Diff line number Diff line
# Remove the useless bloat auto-installed by MS on Windows Updates


#
#  DEMO Apps
#

# remove from all current accounts
# Get-appxpackage -allusers *Microsoft.3dbuilder* | Remove-AppxPackage
Get-AppxPackage -AllUsers -Name *duolingo* | Remove-AppxPackage
Get-AppxPackage -AllUsers -Name *EclipseManager* | Remove-AppxPackage
Get-AppxPackage -AllUsers -Name *MicrosoftSolitaireCollection* | Remove-AppxPackage

# remove from new created accounts
Get-appxprovisionedpackage online | where-object {$_.packagename like '*duolingo*'} | remove-appxprovisionedpackage online
Get-appxprovisionedpackage online | where-object {$_.packagename like '*EclipseManager*'} | remove-appxprovisionedpackage online
Get-appxprovisionedpackage online | where-object {$_.packagename like '*MicrosoftSolitaireCollection*'} | remove-appxprovisionedpackage online




#
# To uninstall Money, News, Sports and Weather apps together:
#
Get-AppxPackage -AllUsers -Name *BingNews* | Remove-AppxPackage
Get-AppxPackage -AllUsers -Name *BingSports* | Remove-AppxPackage
Get-AppxPackage -AllUsers -Name *BingWeather* | Remove-AppxPackage
Get-AppxPackage -AllUsers -Name *Micorsoft.BingWeather** | Remove-AppxPackage
Get-AppxPackage -AllUsers -Name *bing* | Remove-AppxPackage
# To uninstall Money:
Get-AppxPackage -AllUsers -Name *BingFinance* | Remove-AppxPackage


# remove from new created accounts
Get-appxprovisionedpackage online | where-object {$_.packagename like '*BingNews*'} | remove-appxprovisionedpackage online
Get-appxprovisionedpackage online | where-object {$_.packagename like '*BingSports*'} | remove-appxprovisionedpackage online
Get-appxprovisionedpackage online | where-object {$_.packagename like 'Micorsoft.BingWeather*'} | remove-appxprovisionedpackage online
Get-appxprovisionedpackage online | where-object {$_.packagename like '*bing*'} | remove-appxprovisionedpackage online
Get-appxprovisionedpackage online | where-object {$_.packagename like '*BingFinance*'} | remove-appxprovisionedpackage online



#To uninstall Windows Holographic:
Get-AppxPackage -AllUsers -Name *holographic* | Remove-AppxPackage
Get-AppxPackage -AllUsers -Name Microsoft.MixedReality.Portal | Remove-AppxPackage

Get-appxprovisionedpackage online | where-object {$_.packagename like '*holographic*'} | remove-appxprovisionedpackage online
Get-appxprovisionedpackage online | where-object {$_.packagename like 'MixedReality.Portal*'} | remove-appxprovisionedpackage online

Get-AppxPackage -Name Microsoft.WindowsFeedbackHub | Remove-AppxPackage
Get-AppxPackage -Name Microsoft.NetworkSpeedTest | Remove-AppxPackage
Get-AppxPackage -AllUsers -Name Microsoft.WindowsFeedbackHub | Remove-AppxPackage
Get-AppxPackage -AllUsers -Name Microsoft.NetworkSpeedTest | Remove-AppxPackage

Get-appxprovisionedpackage online | where-object {$_.packagename like 'Microsoft.WindowsFeedbackHub*'} | remove-appxprovisionedpackage online
Get-appxprovisionedpackage online | where-object {$_.packagename like 'Microsoft.NetworkSpeedTest*'} | remove-appxprovisionedpackage online



Get-AppxPackage -Name ActiproSoftwareLLC.562882FEEB491 | Remove-AppxPackage
Get-AppxPackage -AllUsers -Name ActiproSoftwareLLC.562882FEEB491 | Remove-AppxPackage
Get-appxprovisionedpackage online | where-object {$_.packagename like '*ActiproSoftware*'} | remove-appxprovisionedpackage online



Get-AppxPackage -AllUsers -Name Microsoft.Todos  | Remove-AppxPackage
Get-AppxPackage -Name Microsoft.Todos  | Remove-AppxPackage
Get-AppxPackage -AllUsers -Name Microsoft.Todos  | Remove-AppxPackage
Get-appxprovisionedpackage online | where-object {$_.packagename like 'Microsoft.Todos*'} | remove-appxprovisionedpackage online


Get-AppxPackage -AllUsers -Name Microsoft.Whiteboad  | Remove-AppxPackage
Get-AppxPackage -Name Microsoft.Witeboard  | Remove-AppxPackage
+9 −5
Original line number Diff line number Diff line
# Remove the Music-TV online player from MS

# if (XBOX == True){

    Get-AppxPackage -AllUsers -Name *XboxApp* | Remove-AppxPackage
    Get-AppxPackage -AllUsers -Name *xbox* | Remove-AppxPackage
    Get-AppxPackage -Name *xbox* | Remove-AppxPackage
# }

Get-AppxPackage -AllUsers -Name *Microsoft.XboxApp* | Remove-AppxPackage
Get-AppxPackage -AllUsers -Name *Microsoft.Xbox* | Remove-AppxPackage



Get-appxprovisionedpackage online | where-object {$_.PackageName like '*Microsoft.XboxApp*'} | remove-appxprovisionedpackage online
Get-appxprovisionedpackage online | where-object {$_.PackageName like '*Microsoft.Xbox*'} | remove-appxprovisionedpackage online



<#
+5 −2
Original line number Diff line number Diff line
@@ -2,5 +2,8 @@



    Get-AppxPackage -AllUsers -Name *ZuneVideo* | Remove-AppxPackage
    Get-AppxPackage -AllUsers -Name *zune* | Remove-AppxPackage
Get-AppxPackage -AllUsers -Name *Microsoft.ZuneVideo* | Remove-AppxPackage
Get-AppxPackage -AllUsers -Name *Microsoft.Zune* | Remove-AppxPackage

Get-appxprovisionedpackage online | where-object {$_.PackageName like '*Microsoft.ZuneVideo*'} | Remove-Appxprovisionedpackage online
Get-appxprovisionedpackage online | where-object {$_.PackageName like '*Microsoft.Zune*'} | Remove-Appxprovisionedpackage online