Additional Script Updates
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
# Check if the certificate is installed
|
||||
$cert = Get-ChildItem -Path Cert:\LocalMachine\My | Where-Object { $_.Subject -eq "CN=CorporateCert" }
|
||||
if ($cert) {
|
||||
Write-Output "Certificate is installed"
|
||||
exit 0
|
||||
} else {
|
||||
Write-Output "Certificate is not installed"
|
||||
exit 1
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
# Install the certificate
|
||||
Import-Certificate -FilePath "C:\Path\To\CorporateCert.cer" -CertStoreLocation Cert:\LocalMachine\My
|
||||
Write-Output "Certificate installed"
|
||||
Reference in New Issue
Block a user