I'm imply trying to learn a little and struggling with what I thought would be basic Group By, Order By, ... when working with JSON.
Below is one of my attempts
$response = Invoke-WebRequest -Uri 'https://jsonplaceholder.typicode.com/todos'…
I have a .csv file which I'm grouping on two properties 'DN', 'SKU' and then performing a sum on another property 'DeliQty'
This works fine and the sum is reflected back to the group.
However I then need to re group just on 'DN' and write out to…
I want to expand a PowerShell Group Object.
But only the first Object.
Get-EventLog -Logname system -EntryType "Error" | Group-Object 'InstanceID' | Select-Object Count, Name, @{Name="Message";Expression={$_.Group.Message[0]}} | Format-Table…
I am not sure what is wrong with the script. I have a 3 column csv file that consists of Name,Count,Owner. The goal is to get the highest count of each name, then output all 3 columns, however the Owner column is not outputting. I am only getting…