1
0
mirror of synced 2025-02-17 11:08:31 +01:00

Add import script

This commit is contained in:
asesidaa 2023-02-26 00:10:53 +08:00
parent c16b083b99
commit fe6ff27ffa

View File

@ -0,0 +1,13 @@
param (
[switch]$WhatIf = $false
)
$certsInMy = Get-ChildItem Cert:\LocalMachine\My
$certsInMy | Where-Object {$_.Issuer -match "Taito Arcade Machine CA"} | Remove-Item -WhatIf:$WhatIf
$certsInRoot = Get-ChildItem Cert:\LocalMachine\Root
$certsInRoot | Where-Object {$_.Issuer -match "Taito Arcade Machine CA"} | Remove-Item -WhatIf:$WhatIf
Get-ChildItem -Path root.pfx | Import-PfxCertificate -CertStoreLocation Cert:\LocalMachine\My -WhatIf:$WhatIf
Get-ChildItem -Path cert.pfx | Import-PfxCertificate -CertStoreLocation Cert:\LocalMachine\My -WhatIf:$WhatIf
Get-ChildItem -Path root.pfx | Import-PfxCertificate -CertStoreLocation Cert:\LocalMachine\Root -WhatIf:$WhatIf