SO I need to push a trusted certificate out to about 30 machines via powershell. How does this look?
get-content c:machines_list.txt | foreach-object {Import-Certificate -FilePath “C:Users**Desktop*.crt” -CertStoreLocation ‘Cert:LocalMachineRoot’ -Verbose}
submitted by /u/detroitmikeb
[link] [comments]
The post Using powershell to remotely install certificates… best practice? appeared first on How to Code .NET.