Remove all store apps windows 10

windows_modern_apps_bloatware

If you don’t use new (modern / metro) style application in windows you can delete all of them with a single PowerShell command.
To open PowerShell: Right click on Windows logo -> Command Prompt (Administrator – type powershell and press Enter.

This command removes all store apps for currently logged in user.
[code]
Get-AppxPackage | Remove-AppxPackage
[/code]

To delete installation packages from disk and prevent installation for new users:
WARNING! This cannot be undone, you will lose ability to install new apps from Windows Store.
[code]
Get-AppXProvisionedPackage -Online | Remove-AppxProvisionedPackage -Online
[/code]

Windows 8 High CPU usage – interrupts

On some Windows 8 PCs, there is an issue with high CPU usage while computer is idle.
Load is caused by processes System and “System Interrupts”.

There was no obvious solution for the problem, however there were some clues on the web, to look into network devices.

There are 2 NICs in my PC, one integrated and one, pretty old – in PCI slot. I suspected the problem was caused by the older one.
After multiple tries, I dicovered that after disabling the second network card – CPU load dropped.
However this NIC was in use, for Internet sharing via WiFi router, so I couldn’t disable it

The solution was actually very simple – after disabling one option in device settngs (check screenshot) the load dropped back to normal.
NB! You may need to reboot for changes to take effect!

Windows 8 High CPU usage interrupts