Loading features/ms_wifi.ps1 +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 features/useless_demo_apps.ps1 +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 Loading features/xbox.ps1 +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 <# Loading features/zune.ps1 +5 −2 Original line number Diff line number Diff line Loading @@ -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 Loading
features/ms_wifi.ps1 +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
features/useless_demo_apps.ps1 +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 Loading
features/xbox.ps1 +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 <# Loading
features/zune.ps1 +5 −2 Original line number Diff line number Diff line Loading @@ -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