You are using an out of date browser. It may not display this or other websites correctly. You should upgrade or use an alternative browser.
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.
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...