I am able to check if installed on my machine, is there a way to do this on remote computers?
if (Get-ChildItem -Path Cert:\LocalMachine\Root | Where-Object {$_.Thumbprint -eq "d2d18014060c598b84763527488598772g625522"})
{
Write-Host "Installed"
}
else
{
Write-Host "Not Installed"
}
Thanks