ca signed

About this tag
Discussions about creating CA signed certificates on Windows Server 2012 R2 using PowerShell are a recurring topic. Users often face challenges because the -Signer parameter for New-SelfSignedCertificate is unavailable in PowerShell version 4. The tag covers methods to generate certificates signed by a custom certificate authority when the standard cmdlet lacks direct support. Related threads explore workarounds and alternative scripting approaches for enterprise certificate management on older Windows Server versions.
  1. S

    Windows 8 Creating CA signed certificate in powershell on windows-server 2012R2

    for windows-server2016 its quite easy using " New-SelfSignedCertificate -certstorelocation cert:\localmachine\my -dnsname "myCertificate" -Signer $rootcert " command with $rootcert having another self-signed certificate however for windows server 2012 R2, -Signer parameter does not exist. I'm...
Back
Top