Hi,
I recently tried to do that also. But without a CA.
With only a Self-Sign Root CA and a client certificate signed with this root CA.
It’s not the best way, but an easy way to get it done.
First, in Windows 10 with Powershell, generate a Root CA cert.
$cert = New-SelfSignedCertificate -Type Custom -KeySpec Signature -Subject "CN=MerakiRootCert" -KeyExportPolicy Exportable -NotAfter (Get-Date).AddYears(15) -HashAlgorithm sha256 -KeyLength 2048 -CertStoreLocation "Cert:\CurrentUser\My" -KeyUsageProperty Sign -KeyUsage CertSign
![Image-2021-08-11_19h05_001_JHO-CCTI-SF2.png Image-2021-08-11_19h05_001_JHO-CCTI-SF2.png](https://community.meraki.com/t5/image/serverpage/image-id/19656iAD99896066A103E1/image-size/large?v=v2&px=999)
Don’t close your Powershell
This Self-sign root CA certificate will be stored in your user personal store.
Now export it on your desktop in Base64 format. No need to export private key.
![Image-2021-08-11_19h18_2_JHO-CCTI-SF2.png Image-2021-08-11_19h18_2_JHO-CCTI-SF2.png](https://community.meraki.com/t5/image/serverpage/image-id/19657i2ED44ADD0320263A/image-size/large?v=v2&px=999)
![Image-2021-08-11_19h27_001_JHO-CCTI-SF2.png Image-2021-08-11_19h27_001_JHO-CCTI-SF2.png](https://community.meraki.com/t5/image/serverpage/image-id/19658i79356B5D71CE34E2/image-dimensions/321x314?v=v2)
Then Upload it on your Dashboard
![Image-2021-08-11_19h29_002_JHO-CCTI-SF2.png Image-2021-08-11_19h29_002_JHO-CCTI-SF2.png](https://community.meraki.com/t5/image/serverpage/image-id/19659i8123886A5229FB0B/image-size/large?v=v2&px=999)
Now
Create a client certificate signed by the Self-sign root ca.
New-SelfSignedCertificate -Type Custom -DnsName MerakiChildCert -KeySpec Signature -Subject "CN=MerakiChildCert" -NotAfter (Get-Date).AddYears(15) -KeyExportPolicy Exportable -HashAlgorithm sha256 -KeyLength 2048 -CertStoreLocation "Cert:\CurrentUser\My" -Signer $cert -TextExtension @("2.5.29.37={text}1.3.6.1.5.5.7.3.2")
![Image-2021-08-11_19h33_001_JHO-CCTI-SF2.png Image-2021-08-11_19h33_001_JHO-CCTI-SF2.png](https://community.meraki.com/t5/image/serverpage/image-id/19660iA5573EF88A4C8342/image-size/large?v=v2&px=999)
That it.
If you want to deploy the certificate to other computers, you can export it and import it manually or with a GPO.
Regards,