You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/content/docs/cloudflare-one/connections/connect-devices/warp/user-side-certificates/manual-deployment.mdx
+42Lines changed: 42 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -303,6 +303,48 @@ To install a Cloudflare certificate to Firefox manually:
303
303
304
304
For information on installing a Cloudflare certificate for organizations, refer to this [Mozilla support article](https://support.mozilla.org/en-US/kb/setting-certificate-authorities-firefox).
305
305
306
+
### Mobile device management (MDM) software
307
+
308
+
These steps require you to [download a Cloudflare certificate](#download-the-cloudflare-root-certificate) in `.pem` format.
309
+
310
+
#### Microsoft Intune
311
+
312
+
To deploy a certificate to Microsoft Intune devices, you must convert your certificate and create a trusted certificate profile.
313
+
314
+
<Detailsheader="macOS and Linux">
315
+
316
+
1. Install [OpenSSL](https://www.openssl.org/).
317
+
2. In a terminal, convert the certificate to DER format with the `.cer` file type:
318
+
319
+
```sh
320
+
openssl x509 -inform PEM -in ~/Downloads/certificate.pem -outform DER -out ~/Downloads/certificate.cer
321
+
```
322
+
323
+
3. In Microsoft Intune, [create a trusted certificate profile](https://learn.microsoft.com/mem/intune/protect/certificates-trusted-root#create-trusted-certificate-profiles) with your converted certificate.
324
+
325
+
</Details>
326
+
327
+
<Detailsheader="Windows">
328
+
329
+
1. Install [OpenSSL for Windows](https://slproweb.com/products/Win32OpenSSL.html).
330
+
2. In a PowerShell terminal, convert the certificate to DER format with the `.cer` file type:
331
+
332
+
```powershell
333
+
openssl x509 -inform PEM -in "$HOME\Downloads\certificate.pem" -outform DER -out "$HOME\Downloads\certificate.cer"
334
+
```
335
+
336
+
3. In Microsoft Intune, [create a trusted certificate profile](https://learn.microsoft.com/mem/intune/protect/certificates-trusted-root#create-trusted-certificate-profiles) with your converted certificate.
0 commit comments