IT:AD:Powershell:HowTo/Write Output containing Sub Properties
Sumary
You tried and it didn't work:
Write-Host("...Found: $projectNodes.Count");
Process
Wrap it in $():
Write-Host("...Found: $($projectNodes.Count)");
it:ad:powershell:howto:write_output_containing_sub_properties
You tried and it didn't work:
Write-Host("...Found: $projectNodes.Count");
Wrap it in $():
Write-Host("...Found: $($projectNodes.Count)");