-
Notifications
You must be signed in to change notification settings - Fork 24
How to create a non expiring certificate in Visual Studio
Anthony edited this page Aug 15, 2019
·
8 revisions
Start | All Programs | Microsoft Visual Studio 2012 | Visual Studio Tools | Developer Command Prompt for VS2012 | right click and "Run as administrator"
MakeCert /n "CN=YourCertName" /r /h 0 /eku "1.3.6.1.5.5.7.3.3,1.3.6.1.4.1.311.10.3.13" /e "01/16/2174" /sv YourCertName.pvk YourCertName.cer
pvk2pfx -pvk YourCertName.pvk -spc YourCertName.cer -pfx YourCertName.pfx –f
*Note the date format is the US standard MM/DD/YYYY *Note the "-f" parameter is used for overwriting an existing file
To learn more about the used tools
Makecert
http://msdn.microsoft.com/en-us/library/bfsktky3%28v=vs.80%29.aspx
Pvk2Pfx
http://msdn.microsoft.com/en-us/library/windows/hardware/ff550672%28v=vs.85%29.aspx