We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Create a self singed Root Certificate and a Selfsigned Certificate with the follwing code
$params = @{ Type = 'Custom' Subject = 'CN=PSURootCert' KeySpec = 'Signature' KeyExportPolicy = 'Exportable' KeyUsage = 'CertSign' KeyUsageProperty = 'Sign' KeyLength = 2048 HashAlgorithm = 'sha256' NotAfter = (Get-Date).AddMonths(120) CertStoreLocation = 'Cert:\LocalMachine\My' } $cert = New-SelfSignedCertificate @params $params = @{ Type = 'SSLServerAuthentication' Subject = 'CN=updatedashboard.chhome.de' DnsName = 'DEVBOX' KeySpec = 'KeyExchange' KeyLength = 2048 HashAlgorithm = 'sha256' NotAfter = (Get-Date).AddMonths(120) CertStoreLocation = 'Cert:\LocalMachine\My' Signer = $cert TextExtension = @( '2.5.29.37={text}1.3.6.1.5.5.7.3.1' ) Provider = 'Microsoft RSA SChannel Cryptographic Provider' } New-SelfSignedCertificate @params
If I try to use this certificate with the VSCode extension I get the following error messages:
I also checked the forums and did the things described in this post Forum Post.
The Root Certificate is in Machine -> Trusted Root Certification authorities The normal chertificat is in Machine -> My
Is there any problem with the extension?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Create a self singed Root Certificate and a Selfsigned Certificate with the follwing code
If I try to use this certificate with the VSCode extension I get the following error messages:
I also checked the forums and did the things described in this post Forum Post.
The Root Certificate is in Machine -> Trusted Root Certification authorities
The normal chertificat is in Machine -> My
Is there any problem with the extension?
The text was updated successfully, but these errors were encountered: