About 8,170 results
Open links in new tab
  1. Everything you wanted to know about PSCustomObject - PowerShell

    Mar 24, 2025 · The idea behind using a PSCustomObject is to have a simple way to create structured data. Take a look at the first example and you'll have a better idea of what that means.

  2. PowerShell is fun :)Using PSCustomObject in PowerShell

    Mar 13, 2023 · This is one of the most used tools in PowerShell that I use, an excellent way of storing and using data for reporting purposes. In this blog post, I will show you how to use it to your benefit.

  3. How to use Custom Objects (PSCustomObject) in PowerShell?

    Oct 3, 2025 · Learn how to create and use custom objects in PowerShell to organize and manipulate data effectively, with this comprehensive guide!

  4. PSCustomObject Cheat Sheet - Command in Line

    PowerShell’s [PSCustomObject]@ {…} construct is a powerful feature for creating custom objects tailored to your needs. In this detailed guide, we explore what this construct is, why it is essential for …

  5. Fun With PowerShell Objects – PSCustomObject - Arcane Code

    Jan 10, 2022 · Introduction Before the holidays I had started a series on classes and objects in PowerShell. If you haven’t read my post Fun With PowerShell Classes – The Basics you should give …

  6. Custom Objects | PowerShell By Example

    PowerShell by Example is a hands-on introduction to PowerShell using annotated example programs.

  7. How to Create Custom Objects in PowerShell?

    Jan 2, 2025 · In this tutorial, I will explain how to create custom objects in PowerShell. Keep reading it. I have explained with practical examples. Custom objects in PowerShell allow you to structure your …

  8. How to initialize an array of custom objects - Stack Overflow

    May 10, 2017 · First, as this leads to my question, I'll start by noting that I've worked with XML a fair bit in PowerShell, and like how I can read data from XML files, quickly, into arrays of custom objects.

  9. Powershell: Everything you wanted to know about PSCustomObject

    Oct 28, 2016 · The idea behind using a PSCustomObject is to have a very simple way to create structured data. Take a look at the first example and you will have a better idea of what that means.

  10. Simple examples of Powershell PSCustomObject

    Jan 14, 2012 · In the above example, you create a blank PSCustomObject on line 1 which has Name, RAM and CPU placehoders. Then on lines 2 through 4 you assign values to each attribute.