Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/powershell/12.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
从何处获取powershell的PKI模块_Powershell_Module_Pki - Fatal编程技术网

从何处获取powershell的PKI模块

从何处获取powershell的PKI模块,powershell,module,pki,Powershell,Module,Pki,我需要获取pki模块的pki.psm1文件。不是pspki,不是pki客户端,不是pki工具,只是pki。我需要cmdlet导入证书,它不在上述任何模块中,只在PKI中。当我试图从装有PS 5.1的windows 10计算机上复制模块文件夹时,psm1文件丢失,因此该模块在PS的较低版本中无法工作。如果可能,我需要在PS 2.0中使用它,因为我们的环境中有很多这样的文件。有人知道,在哪里可以获得完整的PKI模块吗?此Microsoft模块是在Windows 10上随WMF 5.0提供的 如果查看

我需要获取pki模块的pki.psm1文件。不是pspki,不是pki客户端,不是pki工具,只是pki。我需要cmdlet导入证书,它不在上述任何模块中,只在PKI中。当我试图从装有PS 5.1的windows 10计算机上复制模块文件夹时,psm1文件丢失,因此该模块在PS的较低版本中无法工作。如果可能,我需要在PS 2.0中使用它,因为我们的环境中有很多这样的文件。有人知道,在哪里可以获得完整的PKI模块吗?

此Microsoft模块是在Windows 10上随WMF 5.0提供的

如果查看模块详细信息,它与Powershell 3.0以下版本不兼容:

@{
GUID="{cf094c6b-63d1-4dda-bf70-15a602c4eb2b}"
Author="Microsoft Corporation"
CompanyName="Microsoft Corporation"
Copyright="© Microsoft Corporation. All rights reserved."
ModuleVersion="1.0.0.0"
NestedModules="Microsoft.CertificateServices.PKIClient.Cmdlets"
TypesToProcess = 'pki.types.ps1xml'
HelpInfoUri="http://go.microsoft.com/fwlink/?linkid=390811"
PowerShellVersion='3.0'
CLRVersion='4.0'
CmdletsToExport = @('Add-CertificateEnrollmentPolicyServer', 'Export-Certificate', 'Export-PfxCertificate', 'Get-CertificateAutoEnrollmentPolicy', 'Get-Certificate', 'Get-CertificateNotificationTask', 'Get-CertificateEnrollmentPolicyServer', 'Get-PfxData', 'Import-Certificate', 'Import-PfxCertificate', 'New-CertificateNotificationTask', 'New-SelfSignedCertificate', 'Remove-CertificateNotificationTask', 'Remove-CertificateEnrollmentPolicyServer', 'Set-CertificateAutoEnrollmentPolicy', 'Switch-Certificate', 'Test-Certificate')
}