Avatar of Missy Januszko

Follow Missy

Missy Januszko

Petri Contributor

LATEST

Anatomy of a PowerShell Advanced Function

Last Update: Apr 17, 2023

PowerShell advanced functions provide modularity in automating system administration tasks and by structuring PowerShell scripts as advanced functions, you can transform your scripts and functions into reusable tools.

View Article
PowerShell

PowerShell Remoting Basics

Last Update: Jul 23, 2022

Missy Januszko provides an overview of PowerShell remoting and explains the use of different cmdlets for managing multiple machines at once.

View Article

PowerShell Classes Part 5 — Classes or PSCustom Objects?

Custom PowerShell objects are one way to represent a set of data as a single object and so are PowerShell classes. In this article, take a look at some of the similarities and differences between the two object structures so that you can best define custom objects for your needs.

View Article

PowerShell Classes Part 4 — Constructors and Inheritance

Take your PowerShell class programming to the next level! Define constructors to simplify the creation of the classes, and use inheritance to create a hierarchy of classes and subclasses that inherit properties and methods.

View Article

PowerShell Classes Part 3 — Using Methods

In part 3 of the PowerShell Class series, Missy Januszko discusses how to define methods to perform actions against an instance of the class.

View Article

PowerShell Classes Part 2 — Enumerated Types

In the second part of the series on PowerShell classes, learn how and where to declare constant values using Enums and explore the differences between enums and ValidateSet.

View Article

Creating Your First PowerShell Class

Take your PowerShell programming to a new level by learning how to use classes.

View Article

Unraveling the Mystery of $MyInvocation

Missy Januszko explores the uses of $MyInvocation.

View Article

Validating PowerShell Input Using Parameter Validation Attributes

Missy Januszko uses parameter validation attributes to define the acceptable input without writing a ton of additional code.

View Article

Avoiding Accidental Changes with PowerShell’s WhatIf and Confirm Parameters

Learn how to prevent PowerShell mistakes by adding -whatif and -confirm parameters.

View Article
Go to page