Describe when someone would need this information. For example "when connecting to wi-fi for the first time".
Add the steps involved:
Change directory to the SSL folder we just created
cd Desktop/SSL |
Generate a Certificate Signing Request (CSR)
openssl req -new -newkey rsa:2048 -nodes -out rdp.csr -keyout rdp.key |
You can also use the DigiCert Easy CSR tool. |
Create a PKCS#12 archive
openssl pkcs12 -export -in rdp-signed.crt -inkey rdp.key -out rdp.p12 -certfile more.crt |
If your CA requires an intermediate certificate, append the following to the previous command before submitting it.
-CAfile "intermediate_cert_from_CA.crt" |
Run the local computer certificate manager
certlm.msc |
Right-click the Personal store on the left
Open PowerShell and enter the following command, but don't press Enter yet
wmic /namespace:\\root\cimv2\TerminalServices PATH Win32_TSGeneralSetting Set SSLCertificateSHA1Hash="<certificate thumbprint>" |
Replace <certificate thumbprint> with the thumbprint from Notepad
Related articles appear here based on the labels you select. Click to edit the macro and add or change labels.
|