formats/addepartmentmember.format.ps1xml
<?xml version="1.0" encoding="UTF-8"?>
<Configuration> <ViewDefinitions> <View> <Name>default</Name> <ViewSelectedBy> <TypeName>ADDeptMember</TypeName> </ViewSelectedBy> <GroupBy> <PropertyName>Department</PropertyName> <Label>Department</Label> </GroupBy> <TableControl> <!--Delete the AutoSize node if you want to use the defined widths.--> <!-- <AutoSize /> --> <TableHeaders> <TableColumnHeader> <Label>Name</Label> <Width>25</Width> <Alignment>left</Alignment> </TableColumnHeader> <TableColumnHeader> <Label>Title</Label> <Width>30</Width> <Alignment>left</Alignment> </TableColumnHeader> <TableColumnHeader> <Label>City</Label> <Width>20</Width> <Alignment>left</Alignment> </TableColumnHeader> <TableColumnHeader> <Label>Phone</Label> <Width>8</Width> <Alignment>left</Alignment> </TableColumnHeader> </TableHeaders> <TableRowEntries> <TableRowEntry> <TableColumnItems> <TableColumnItem> <ScriptBlock> If ($host.name -match 'console' -AND (-Not $_.Enabled)) { "$($ADReportingToolsOptions.Alert)$($_.Name)$([char]0x1b)[0m" } else { $_.Name } </ScriptBlock> </TableColumnItem> <TableColumnItem> <PropertyName>Title</PropertyName> </TableColumnItem> <TableColumnItem> <PropertyName>City</PropertyName> </TableColumnItem> <TableColumnItem> <PropertyName>Phone</PropertyName> </TableColumnItem> </TableColumnItems> </TableRowEntry> </TableRowEntries> </TableControl> </View> <View> <!--Created 03/18/2021 10:59:45 by COMPANY\artd--> <Name>manager</Name> <ViewSelectedBy> <TypeName>ADDeptMember</TypeName> </ViewSelectedBy> <GroupBy> <!-- You can also use a scriptblock to define a custom property name. You must have a Label tag. <ScriptBlock>$_.machinename.toUpper()</ScriptBlock> <Label>Computername</Label> Use <Label> to set the displayed value. --> <ScriptBlock>"{0} [{1}]" -f $($_.Manager),$($_.Department)</ScriptBlock> <Label>Manager</Label> </GroupBy> <TableControl> <!--Delete the AutoSize node if you want to use the defined widths. <AutoSize />--> <TableHeaders> <TableColumnHeader> <Label>Name</Label> <Width>20</Width> <Alignment>left</Alignment> </TableColumnHeader> <TableColumnHeader> <Label>Description</Label> <Width>25</Width> <Alignment>left</Alignment> </TableColumnHeader> <TableColumnHeader> <Label>Title</Label> <Width>20</Width> <Alignment>left</Alignment> </TableColumnHeader> <TableColumnHeader> <Label>City</Label> <Width>15</Width> <Alignment>left</Alignment> </TableColumnHeader> </TableHeaders> <TableRowEntries> <TableRowEntry> <TableColumnItems> <TableColumnItem> <ScriptBlock> If ($host.name -match 'console' -AND (-Not $_.Enabled)) { "$($ADReportingToolsOptions.Alert)$($_.Name)$([char]0x1b)[0m" } else { $_.Name } </ScriptBlock> </TableColumnItem> <TableColumnItem> <PropertyName>Description</PropertyName> </TableColumnItem> <TableColumnItem> <PropertyName>Title</PropertyName> </TableColumnItem> <TableColumnItem> <PropertyName>City</PropertyName> </TableColumnItem> </TableColumnItems> </TableRowEntry> </TableRowEntries> </TableControl> </View> </ViewDefinitions> </Configuration> |