Nice Code!
Quick question - How I can expand the columns size? I am getting ".../" at the end of each virtual server name.
Thank You
UPDATE:
$virtualServers.items | Select-Object Name, FullPath, `
@{Name="ClientSslProfiles"; Expression={($_.profilesReference.items | ?{ $sslProfilesClient -contains $_.fullPath -and $_.context -eq "clientside" }) | Select -ExpandProperty fullPath }}, `
@{Name="ServerSslProfiles"; Expression={($_.profilesReference.items | ?{ $sslProfilesServer -contains $_.fullPath -and $_.context -eq "serverside" }) | Select -ExpandProperty fullPath }} | `
export-csv "\\localhost\test\Groups_Members.csv" -NoTypeInformation -Delimiter ';';
This will export it to a CSV file
Thanks!!!!!!!!!!
J