About 50 results
Open links in new tab
  1. Passing array of objects to a function - Spiceworks Community

    Jun 23, 2015 · You can’t pass an array of objects to the Process block that way - it will process the entire array at once instead of one at a time. The process block is for processing input …

  2. Trying to add a column to a Powershell array - Programming ...

    Aug 19, 2022 · Trying to use GAM commands with PowerShell can be a pain, but it really expands the functionally of GAM, which can be pretty basic at times. Are you using windows …

  3. Powershell selecting array objects based on Value

    Aug 21, 2018 · Powershell selecting array objects based on Value Programming & Development powershell question darrenmccann (darrenmccann) August 21, 2018, 8:24am 1

  4. Syntax for array-type pipeline function paramter...

    Jan 25, 2022 · As I understand it, whenever a cmdlet outputs an array onto the pipeline, the pipeline unwraps the array and, one-by-one, sends each array element individually down the …

  5. PowerShell - Converting Object Array to Array? - Programming ...

    Jun 24, 2020 · Also, when you do the Write-Host on an array, you will get an array output of each array member objects properties. So by changing the Select-Object you would end up with …

  6. Powershell: Correctly exporting an "array of arrays" as a CSV file

    May 17, 2019 · Hi, I’ve created a simple “array of arrays” to list people’s favorite food to then export to csv as a test. However, when I add a comma as a delimiter between the elements in …

  7. copy an array column to another array - Spiceworks Community

    Aug 29, 2019 · In PowerShell arrays are immutable. If the column does not exist when initialized you need to create a new one. Also, arrays don’t have named columns. The syntax you are …

  8. Format PowerShell array as a table? - Spiceworks Community

    Jul 14, 2017 · 1 76 March 19, 2015 Table with multiple different sized columns Programming & Development discussion , powershell 10 178 September 11, 2019 How to get PowerShell into …

  9. Converting Powershell object to an array, Maybe?

    Oct 1, 2015 · In this case I called the GetTypeArray static method of the .Net Type class, which simply is showing the data type of the objects that are a part of the array. Its important for …

  10. PowerShell: Return first occurrences of each unique item in array

    Mar 25, 2021 · Get-Unique (Microsoft.PowerShell.Utility) - PowerShell The Get-Unique cmdlet compares each item in a sorted list to the next item, eliminates duplicates, and returns only …