Qui-Gon John wrote: Unfortunately though, Microsoft has decided their updates are 90% fluff, new games or apps they want you to see, .
I view it differently, I see them as great improvements with each version...IMO the features being released aren't 90% fluff and games, rather good useful features.
1903 brought with it a cool sandbox feature (basically replacement for virtual machine). Also some nice theme changes, and finally Cortana and Search got a divorce (they're separate now).
Prior update, 1809, brought some neat auto deployment features ala Autopilot...for us sys admin guys. Also added better BitLocker centralized management...very key for us sysadmins. I know you didn't like the changes to Defender..but most of the IT industry did, especially the improved sandboxing of browsers in how Defender managed it.
1803 brought a lot of changes to how Defender worked...but those changes were important for keeping up with todays threats. There's a reason Defender climbed back up towards the top of antivirus testing....as it had fallen down substantially a few years ago in its effectiveness, turning into a joke. 1803 brought it back to a seriously good built in product!
The games and apps are minimal, and most of us IT guys use a powershell script to quickly/easily run when unbuckling and deploying workstations that kills those right off the bat and prevents them from coming back.
**********************************
Run Windows Powershell (as Adminitrator)
To uninstall CandyCrush:
get-appxpackage -allusers *CandyCrushSaga* | remove-appxpackage
To uninstall CandyCrush and all other games King.com:
get-appxpackage -allusers *king.com* | remove-appxpackage
To uninstall Calendar and Mail apps together:
get-appxpackage -allusers *communicationsapps* | remove-appxpackage
To uninstall Office Desktop:
get-appxpackage -allusers *office* | remove-appxpackage
To uninstall Get Office:
get-appxpackage -allusers *officehub* | remove-appxpackage
To uninstall Get Skype:
get-appxpackage -allusers *skypeapp* | remove-appxpackage
To uninstall Groove Music:
get-appxpackage -allusers *zunemusic* | remove-appxpackage
To uninstall Groove Music and Movies & TV apps together:
get-appxpackage -allusers *zune* | remove-appxpackage
To uninstall Messaging and Skype Video apps together:
get-appxpackage -allusers *messaging* | remove-appxpackage
To uninstall Money:
get-appxpackage -allusers *bingfinance* | remove-appxpackage
To uninstall Money, News, Sports and Weather apps together:
get-appxpackage -allusers *bing* | remove-appxpackage
To uninstall Movies & TV:
get-appxpackage -allusers *zunevideo* | remove-appxpackage
To uninstall News:
get-appxpackage -allusers *bingnews* | remove-appxpackage
To uninstall OneNote:
get-appxpackage -allusers *onenote* | remove-appxpackage
To uninstall People:
get-appxpackage -allusers *people* | remove-appxpackage
To uninstall Phone:
get-appxpackage -allusers *commsphone* | remove-appxpackage
To uninstall Phone Companion:
get-appxpackage -allusers *windowsphone* | remove-appxpackage
To uninstall Phone and Phone Companion apps together:
get-appxpackage -allusers *phone* | remove-appxpackage
To uninstall Sports:
get-appxpackage -allusers *bingsports* | remove-appxpackage
To uninstall Sway:
get-appxpackage -allusers *sway* | remove-appxpackage
To uninstall Weather:
get-appxpackage -allusers *bingweather* | remove-appxpackage
To uninstall Windows Store: (Be very careful!)
get-appxpackage -allusers *windowsstore* | remove-appxpackage
To uninstall Xbox:
get-appxpackage -allusers *xbox* | remove-appxpackage
(Block Furtur Installs for new accounts):
Get-AppXProvisionedPackage -online | Remove-AppxProvisionedPackage –online
Retore All Apps
Get-AppxPackage -allusers | foreach {Add-AppxPackage -register "$($_.InstallLocation)\appxmanifest.xml" -DisableDevelopmentMode}