Read System Certificates in UWP
In Windows, we can view and manage the certificates using certmgr.msc, which is a system management console included in Windows itself. However, what if we want to view the certificates information in an UWP app? Here is the answer. First thing first, the method I use does not apply to UWP only. In fact it is from a WPF app I wrote. As Microsoft released .NET Standard 2.0, which allows me to …