Difference between revisions of "SSL CA Install"
From WPKG | Open Source Software Deployment and Distribution
(General cleanups) |
|||
| Line 1: | Line 1: | ||
| − | + | There are probably lots of ways to do this. | |
| − | + | ||
| − | You will need CertMgr.exe. It | + | You will need CertMgr.exe. It's part of [http://www.microsoft.com/downloads/details.aspx?FamilyId=FE6F2099-B7B4-4F47-A244-C96D69C35DEC .NET Framework 2.0 Software Development Kit] - you don't need the entire kit on your clients or in your WPKG installation, only CertMgr.exe. |
| − | the | + | |
| + | CertMgr.exe is documented [http://msdn.microsoft.com/en-us/library/e78byta0(VS.80).aspx here]. Basic usage as follows: | ||
| − | + | %programfiles%\Microsoft.NET\SDK\v2.0\Bin\CertMgr.Exe /add ca-cert.der /all /s /r localMachine root | |
| − | + | ||
| − | + | This would install all CAs in ca-cet.der globally, for all users. | |
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
Example: | Example: | ||
| Line 39: | Line 18: | ||
priority="50" | priority="50" | ||
execute="once"> | execute="once"> | ||
| − | <install cmd= | + | <install cmd="%SOFTWARE%\pkg\ssl\CertMgr.Exe /add ca-cert.der /all /s /r localMachine root"> |
| − | + | ||
</install> | </install> | ||
</package> | </package> | ||
Revision as of 16:00, 27 August 2008
There are probably lots of ways to do this.
You will need CertMgr.exe. It's part of .NET Framework 2.0 Software Development Kit - you don't need the entire kit on your clients or in your WPKG installation, only CertMgr.exe.
CertMgr.exe is documented here. Basic usage as follows:
%programfiles%\Microsoft.NET\SDK\v2.0\Bin\CertMgr.Exe /add ca-cert.der /all /s /r localMachine root
This would install all CAs in ca-cet.der globally, for all users.
Example:
<package
id="ssl_cert"
name="ssl certificate"
revision="1"
reboot="false"
priority="50"
execute="once">
<install cmd="%SOFTWARE%\pkg\ssl\CertMgr.Exe /add ca-cert.der /all /s /r localMachine root">
</install>
</package>