Hi.
I have a list of servers in C:\Servers.txt
So I do :
$servers = get-content C:\Servers.txt
I then want to use each servername from $servers in the following command :
Get-CertificationAuthority –name testCA | Get-issuedRequest | where-object {$_. Request.RequesterName -eq $servers}
Any ideas ?
Thanks