Last active
July 13, 2023 21:40
-
-
Save dispherical/f36547bb2a587a3adfd37c0e5e3c8a14 to your computer and use it in GitHub Desktop.
Installing the CA on Windows using Powershell
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Invoke-WebRequest -URI "https://gist.githubusercontent.com/aboutdavid/f36547bb2a587a3adfd37c0e5e3c8a14/raw/5e47cb82fa6cc7ab53f2d63b5593a16f56445bef/outernet_ca.crt" -OutFile C:\outernet.crt | |
$file=(Get-ChildItem -Path "C:\outernet.crt") | |
$file | Import-Certificate -CertStoreLocation cert:\LocalMachine\Root |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-----BEGIN CERTIFICATE----- | |
MIIB5jCCAYugAwIBAgIRAK9F4GHdzmwnSDlj4oN62y4wCgYIKoZIzj0EAwIwGzEZ | |
MBcGA1UEAxMQT3V0ZXJMQU4gUm9vdCBDQTAeFw0yMzA3MDkwMDUwNTZaFw0yMzA4 | |
MDEwNDAwMDBaMBsxGTAXBgNVBAMTEE91dGVyTEFOIFJvb3QgQ0EwWTATBgcqhkjO | |
PQIBBggqhkjOPQMBBwNCAASBkI0dIOqCANErD9AZBRX418/xZDYR5RdvhteowYFd | |
9bRrz31195YZd85TOWG0FVOpBE++urwFyjI5u1ddiJbPo4GvMIGsMA4GA1UdDwEB | |
/wQEAwIBBjASBgNVHRMBAf8ECDAGAQH/AgEBMB0GA1UdDgQWBBRbvSZweNr2ndQI | |
tNttERya8GyEbDAzBggrBgEFBQcBAQQnMCUwIwYIKwYBBQUHMAGGF2h0dHA6Ly9v | |
Y3NwLmNhLm91dGVybmV0MDIGA1UdHwQrMCkwJ6AloCOGIWh0dHA6Ly9jcmwuY2Eu | |
b3V0ZXJuZXQvY3JsL2NhLmNybDAKBggqhkjOPQQDAgNJADBGAiEAjXOy3F8990aO | |
VwMM7apj9WttF3Nvdr1PKcq1hkAqdpkCIQDmFW1gghUmCpaWf35DT5x0EKMfTWyW | |
Mz7CcpqwkJ+kbw== | |
-----END CERTIFICATE----- |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment