About 192,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 …

  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

    In PowerShell, objects are a fundamental building block that represent data in a structured way. Unlike simple data types, objects can have both properties and methods. Properties are …

  4. 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 …

  5. Understanding PowerShell Objects: A Practical Tutorial

    Nov 12, 2024 · Understanding PowerShell objects unlocks a whole new level of scripting power. Instead of just working with raw text and values, you get rich objects with built-in functionality. …

  6. 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 …

  7. Powershell Objects

    Continuing with your PowerShell Training, the goal of this tutorial is to introduce PowerShell parameters, objects, and formatting output. I'm excited about this tutorial as we begin to define …

  8. 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 …

  9. PowerShell Best Practices: Objects | Fortra - jamsscheduler.com

    Sep 9, 2024 · To get started, we’ll explore the basics of objects in PowerShell and how you can use them to make your scripts efficient and powerful. What is an Object in PowerShell? In …

  10. PowerShell Objects - Codecademy

    May 16, 2023 · To create a custom object called dog, we use the New-Object cmdlet with the PSCustomObject type name. By default, new custom objects have no properties and four …