Learning PowerShell basics
Let's explore some PowerShell basic concepts.
Cmdlets
Cmdlets, pronounced as "commandlets", are the foundation of PowerShell. Cmdlets are small commands or specialized commands. The naming convention for cmdlets follows the verb-noun format, such as Get-Command
or Invoke-Expression
. PowerShell V3 boasts a lot of new cmdlets, including cmdlets to manipulate JSON (ConvertFrom-Json
and ConvertTo-Json
), web services (Invoke-RestMethod
and Invoke-WebRequest
), and background jobs (Register-JobEvent
, Resume-Job
, and Suspend-Job
). In addition to built-in cmdlets, there are also downloadable community PowerShell extensions such as SQLPSX, which can be downloaded from http://sqlpsx.codeplex.com/.
Many cmdlets accept parameters. ...
Get SQL Server 2014 with PowerShell v5 Cookbook now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.