Skip to content

Commit 662f531

Browse files
committed
Add Intune procedure
1 parent 1b9cb71 commit 662f531

File tree

1 file changed

+42
-0
lines changed
  • src/content/docs/cloudflare-one/connections/connect-devices/warp/user-side-certificates

1 file changed

+42
-0
lines changed

src/content/docs/cloudflare-one/connections/connect-devices/warp/user-side-certificates/manual-deployment.mdx

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -303,6 +303,48 @@ To install a Cloudflare certificate to Firefox manually:
303303

304304
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).
305305

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+
<Details header="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+
<Details header="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.
337+
338+
</Details>
339+
340+
#### Jamf
341+
342+
#### Kandji
343+
344+
#### Hexnode
345+
346+
#### Jumpcloud
347+
306348
### Python
307349

308350
#### Python on Windows

0 commit comments

Comments
 (0)