Start the Local Group Policy Editor:
gpedit.msc
Drill down:
User Configuration, Administrative Templates, Start Menu and Taskbar
Enable:
Show "Run as different user" command on Start
Neural failure… Abort, Retry, Fail?
Start the Local Group Policy Editor:
gpedit.msc
Drill down:
User Configuration, Administrative Templates, Start Menu and Taskbar
Enable:
Show "Run as different user" command on Start
Because I can never seem to remember this and rebuilding server labs with Windows isn’t exactly trivial or time friendly:
Get help: slmgr ? Get license information: slmgr -dli slmgr -dlv (more detail) Extend the trial license time: slmgr -rearm
If you have not already read the first page in this MS PKI series, you should do so before continuing.
The following is useful for setting up a single ADCS PKI server in a very small environment such as a lab. It provides instructions using the standard graphical interface that most people use in the MS world. It uses LDAP for all publishing the CDP/AIA points to computers that are only on the domain.
If HTTP is needed to publish CRL/AIA, it must be on a different server (Maybe, I’ve had issues getting CRL/AIA publishing to work on the same server). The requirements can be used from the “Two Tier” setup instructions located on a different page.
Note that a single tier PKI is not typically appropriate in a production environment.
A second page is provided elsewhere that uses a mixture of command line instructions, both PowerShell and the certutil interfaces, for building and configuring the server.
Copy CAPolicy.inf to C:\windows (%systemroot%) of root CA server. A simple minimal example is provided below. You must do this step prior to installing the CA role.
Warning: If creating a new replacement issuing (including single tier) server, use the CAPolicy.inf with the “LoadDefaultTemplates=0” line added. When server is ready to issue, manually add the certificate templates.
CAPolicy.inf example for Root CA:
[Version] Signature=”$Windows NT$” [Certsrv_Server] RenewalKeyLength=4096 RenewalValidityPeriod=Years RenewalValidityPeriodUnits=20 [CRLDistributionPoint] [AuthorityInformationAccess]
Enterprise root CA "Certification Authority"
"Certification Authority" "Enterprise CA" "Root CA" "Create Private Key" -- RSA default is ok,key length 4096, SHA256 "Common name" -- Not the same name as the server "Validity period" -- Should be set by CAPolicy.inf, or equal to.
After complete, check the certificate with MMC CertSRV. It should match above settings.
Open command prompt as administrator. Don’t make these too short if using LDAP. Consider OCSP instead.
NOTE: There are many settings. These are pretty minimal.
Certutil -setreg CA\CRLPeriodUnits 1 Certutil -setreg CA\CRLPeriod "Weeks" --Next two if CRL Deltas are used (which I usually don't on single tier testing server) Certutil -setreg CA\CRLDeltaPeriodUnits 1 Certutil -setreg CA\CRLDeltaPeriod "Days"
From Server Manager:
"Tools" "Certification Authority" (MMC CertSRV) "Properties" "Extensions" tab
Don’t screw these up or you have to start over because issued certs will be bad.
Click ADD, use as examples and add LDAP path utilizing “Variable” and Insert.
ldap:///CN=<CATruncatedName><CRLNameSuffix>,CN=<ServerShortName>,CN=CDP,CN=Public Key Services,CN=Services,<ConfigurationContainer><CDPObjectClass> Check "Publish CRL's to this location","Include in CRL's", "Include in the CDP extentions of issued certificates" Remove default ones except C:\windows (standalone - so no file, ldap, anyway) -- or -- Uncheck all boxes for each.
Click ADD, use as examples and add LDAP path utilizing “Variable” and Insert.
ldap:///CN=<CATruncatedName>,CN=AIA,CN=Public Key Services,CN=Services,<ConfigurationContainer><CAObjectClass> Check "Include in the AIA of issued certificates" Remove default ones except "C:\windows\System32\CertSrv\CertEnroll\<ServerDNSName>_<CaName><CertificateName>.crt -- or -- Uncheck all "Publish/Include" boxes for each.
Restart certificate services to activate this configuration in a PowerShell window:
restart-service certsvc
R-click "Revoked Certificates" All Tasks, Publish
C:\Windows\System32\CertSrv\CertEnroll – .crl’s date modified should change when CRL is published.
pkiview
Also check “Manage AD Containers” from the pkiview menu.
If CA Object Access Auditing is needed, see the page here.