web-dev-qa-db-ja.com

Powershell DSCによるSSL証明書管理

特定のドメインのすべてのターゲットで実行されていることを確認する必要があるサードパーティ発行の証明書があります。この証明書がDSC経由でインストールされていることを確認する方法はありますか?

12
omencat

現在、DSCでこれを行う組み込みの方法はありません。 PFXから証明書をインストールする組織用のカスタムリソースを作成しました。 Cert: PSDrive、Import-PfxCertificateコマンドレットおよび DSCでのセキュリティで保護された資格情報 (PFXパスワード用)。

更新

これはMicrosoftのリソースで公開されています。 xPfxImportリソースは xCertificate module v1.1 にあります(後でおそらく)。

自分のブログでも書いています

励ましをありがとう(特に jscott )。

10
briantist

グループポリシーを使用して証明書をドメインに展開するのはどうですか。 http://technet.Microsoft.com/en-us/library/cc770315%28v=ws.10%29.aspx

グループポリシーを使用して証明書を展開するには

Open Group Policy Management Console.

Find an existing or create a new GPO to contain the certificate settings. Ensure that the GPO is associated with the domain, site, or organizational unit whose users you want affected by the policy.

Right-click the GPO, and then select Edit.

Group Policy Management Editor opens, and displays the current contents of the policy object.

In the navigation pane, open Computer Configuration\Windows Settings\Security Settings\Public Key Policies\Trusted Publishers.

Click the Action menu, and then click Import.

Follow the instructions in the Certificate Import Wizard to find and import the certificate.

If the certificate is self-signed, and cannot be traced back to a certificate that is in the Trusted Root Certification Authorities certificate store, then you must also copy the certificate to that store. In the navigation pane, click Trusted Root Certification Authorities, and then repeat steps 5 and 6 to install a copy of the certificate to that store.
2
Mass Nerder