Right now a lot of IT admins are running around looking at laptops for a nasty cert that comes pre-installed from a certain manufacturer. You can read what all the uproar is about from the article below. My PowerShell needed a little refresh so this was a fun exercise.
Here is a quick way to search your certs with PowerShell.
dir cert:\ -rec | select-String -inputobject {$_.Subject} -pattern ‘Superfish’ |
This gives you string results rather than a count of results.
- And here is a full search of every field with string results…
dir cert:\ -rec | select-String -inputobject {$_} -pattern ‘Superfish’ |
Arstechnica article