Skip to content

Instantly share code, notes, and snippets.

View pascaljc's full-sized avatar

Pascal Jean-Charles pascaljc

  • PJCHARLES
  • New York, US
View GitHub Profile
@pascaljc
pascaljc / answers.md
Created January 17, 2026 16:34 — forked from potatoqualitee/answers.md
answers.md

Something we appreciate about PowerShell and dbatools is that there are often a number of perfectly valid ways to solve the same problem. Considering this, some of the questions have multiple answers.

Some answers are different ways to express the same solution.

Chapter 2

Find all commands that have DbaReg in their name.

Get-Command *dbareg* -Module dbatools
# or