About 197,000 results
Open links in new tab
  1. about_Objects - PowerShell | Microsoft Learn

    Sep 29, 2025 · Provides essential information about objects in PowerShell. Every action you take in PowerShell occurs within the context of objects. As data moves from one command to the next, it …

  2. How to Create Objects in PowerShell?

    Dec 23, 2024 · Learn how to create objects in PowerShell with examples using New-Object, custom PSCustomObject, and more.

  3. Mastering PowerShell Objects: A Quick Guide

    PowerShell objects are instances of classes that encapsulate data and behavior, allowing users to manipulate complex data structures and perform actions efficiently.

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

    Sep 17, 2025 · PowerShell’s custom objects allow you to create your own data structures with properties and methods that can be easily queried and manipulated. These objects are similar to classes in …

  5. PowerShell Objects - ZetCode

    Feb 20, 2025 · Everything in PowerShell is an object, including variables, strings, and system components. You can create custom objects using New-Object or [PSCustomObject]. You can …

  6. Understanding PowerShell Objects - Petri IT Knowledgebase

    Jul 28, 2022 · PowerShell objects are native .NET objects that offer better performance and integration with the PowerShell environment, while COM objects are legacy Windows components.

  7. Understanding PowerShell Objects: A Practical Tutorial

    Nov 12, 2024 · In this hands-on tutorial, you’ll learn how PowerShell objects work and how to harness their power for your automation needs. This tutorial assumes you have: In PowerShell, everything …

  8. Creating objects – why and how to use them | PowerShell tip

    May 22, 2025 · Ready to take your PowerShell scripts to the next level? Learn how to create structured objects, leverage classes, and ensure clean, efficient code. Its always a good practice for scripts to …

  9. Powershell Objects

    By the end of this PowerShell training session you should have a good understanding of what an object is, how we gather information, and how changes are made in the environment.

  10. Everything you wanted to know about PSCustomObject - PowerShell

    Jun 20, 2024 · PowerShell requires that the object is the type you specified. It throws a validation error if the type doesn't match automatically to save you the step of testing for it in your code.