Chapter 21. Creating objects for output

 

This chapter covers

  • “Objectifying” your output
  • Creating custom objects
  • Working with collections of properties

In the previous chapter, we showed you how to create a simple script and turn it into a function. We emphasized the need for scripts and functions to output only one kind of thing, and in those simple examples you found it easy to comply because you were running only a single command. But you’re doubtless going to come across situations where you need to run multiple commands, combine pieces of their output, and use that as the output of your script or function. This chapter will show you how: The goal is to create a custom object that consolidates the information you need and then output it from your script or function. Richard remembers being asked at a conference session if PowerShell had a command that worked in a similar way to the Union command in SQL. This chapter is the closest you’ll get with PowerShell because you’re working with objects.

21.1. Why output objects?

21.2. Syntax for creating custom objects

21.3. Complex objects: collections as properties

21.4. Applying a type name to custom objects

21.5. So, why bother?

21.6. Summary

sitemap