Saturday, December 05, 2015

How to remove Windows 10 Mail and Calendar app

c:\> Get-AppxPackage | Where-Object {$_.Name -like "*microsoft.windowscommunications*"} | Remove-AppxPackage

Note that you have to run PowerShell in elevated mode.

No comments:

Qt console hello world

Qt console hello world This guide shows how a Qt console hello world looks like. ▣ Open  Qt Creator  and click on  Create Project... ...