I have two select statements here. The "headings" from the first (message, username,timegenerated) are being used for the second (username,timegenerated).
Please look at the echo statement to see that the tables\outputs are being merged into one.
Can anyone explain why?
This needs to be run in a ps1 script to see the weirdness:
$before = get-date
$after = (get-date).AddDays(-1)
$a = Get-EventLog System -Before $before -After $after | ? {$_.Message -like "*start*"}
$a | select message, username,timegenerated
echo "----going through security----"
$b = Get-Eventlog security -Before $before -After $after |?{$_.category -match "Logon/Logoff" }
$b | select username,timegenerated
The output is this:
Message UserName TimeGenerated
------- -------- -------------
The Engine service was successfully sent a star... NT AUTHORITY\SYSTEM 22/09/2011 09:32:09
The Engine service was successfully sent a star... NT AUTHORITY\SYSTEM 21/09/2011 16:03:57
The Licensing Service service was successfu... DOMAIN\username 21/09/2011 15:58:12
----going through security----
DOMAIN\9876ABC$ 22/09/2011 14:05:41
DOMAIN\9876ABC$ 22/09/2011 14:04:58
DOMAIN\9876ABC$ 22/09/2011 14:03:40
DOMAIN\9876ABC$ 22/09/2011 14:02:57
NT AUTHORITY\LOCAL SERVICE 22/09/2011 14:01:59
$a = gps|select -First 10;$a|select name;$a|select ws. I found that addingFormat-*statements to the end of each pipe will display the columns correctly:$a = gps|select -First 10;$a|select name|ft;$a|select ws|ft– Rynant Sep 22 '11 at 14:47Format-Tableat the end of the second pipeline causes an error to be thrown, but I'm not sure why.$a = gps|select -First 10; $a|select name; $a|select ws|ft– Rynant Sep 22 '11 at 15:04