

4/16/2020

  See: https://www.sslsupportdesk.com/how-to-move-ssl-certificate-from-mmc-to-mmc/
       https://www.thesslstore.com/knowledgebase/ssl-install/how-to-import-intermediate-
		root-certificates-using-mmc/


Certificates:
 See: http://woshub.com/updating-trusted-root-certificates-in-windows-10/

 See: https://security.stackexchange.com/question/71317/reset-windows-trusted-certificates-store-to-its-default


PowerShell Commands:
List of trusted root certificates with expiration dates:
  Get-Childitem cert:\LocalMachine\root |format-list

List the expired certificates, or which expire in the next 30 days:
  Get-ChildItem cert:\LocalMachine\root  |  Where {$_.NotAfter -lt  (Get-Date).AddDays(40)}

More info:
  http://woshub.com/updating-trusted-root-certificates-in-windows-10/
  	rootsupd.exe 