MSFT_xCertificateImport_remove.config.ps1 416 B

1234567891011121314151617
  1. Configuration MSFT_xCertificateImport_Remove_Config {
  2. param
  3. (
  4. $Thumbprint,
  5. $Path
  6. )
  7. Import-DscResource -ModuleName xCertificate
  8. node localhost {
  9. xCertificateImport Integration_Test {
  10. Thumbprint = $Thumbprint
  11. Path = $Path
  12. Location = 'LocalMachine'
  13. Store = 'My'
  14. Ensure = 'Absent'
  15. }
  16. }
  17. }