How do I make my headers bold when they get outputted in my code below:
$Header = "Account,Ace String,Object Path"
And if I want this last line to be outputted under the same column header within csv, how do i do that:
$OutInfo = $Folder.Fullname + "," + $ACL.IdentityReference + "," + $ACL.AccessControlType + "," + $ACL.IsInherited + "," + $ACL.InheritanceFlags + "," + $ACL.PropagationFlags
I want ($ACL.AccessControlType, $ACL.IsInherited, $ACL.InheritanceFLags and $ACL.Propagations flagsto be displayed under the column header of Object Path.