2

My university prohibits me using Windows Cloud storage and several its functions in Windows 10 Enterprise because it stores passwords in the cloud, prohibiting EU security legislation. I cannot understand the internals of the system. I want to minimize all its functions. I want to decrease the HDD accesses, reads and writes in my Windows 10, which is significantly greater than in Ubuntu 14* and 15*.

Too high HDD accesses make my computer noisy in running Windows 10. I cannot accept that Windows uses its P2P technology between its customers to transfer customers data without customer's acceptance. I only need Windows 10 for GPU computation by Asus GTX 9** family in Matlab so all other features are unnecessary. I have successfully uninstalled and disabled the following applications

  • Skype,
  • OneDrive,
  • Windows store (WinStore.Mobile.exe as suspended) uninstalled by Samuel's answer below.

Apps left untouched in the system

  • SHellExperienceHost.exe (apparently necessary)
  • SearchUI.exe (Search and Cortana) - I disagreed Windows to use Cortana but it is still keeping it on as suspended which I do not want.

How can you uninstall/disable default applications of Windows 10 Enterprise?

2 Answers2

2

You can use PowerShell to remove the Windows store, run the below command:

Get-AppxPackage *windowsstore* | Remove-AppxPackage
  • ShellExperienceHost.exe is important and required for things like the start menu/screen to work and for app integration with the task bar.
  • Unfortunately Cortana cannot be completely removed, although you can perform a hack to disable it almost completely, (at the risk of breaking your start/search bar)
  • Search is integral to Windows and links in to indexing etc... Not sure why you would want to remove it, unless I've misunderstood what you meant.
1

You should check out windows 10 LTSB release, which doesn't include: Store; Cortana; Edge; etc. It also doesn't get the update version pushed out via windows update. You get the decided when you want to install those major updates...download and install them on your own time.
https://www.microsoft.com/en-us/evalcenter/evaluate-windows-10-enterprise

Brian
  • 11
  • 1