Demystify of cmdlets
- The Azure portal
- The Azure CLI
- Azure PowerShell
A command shell is an input field in a text-based user interface screen for an operating system (OS) or program, whereas, cmdlets are the basic unit that performs a single task.
PowerShell was designed to extend the capabilities of the command Shell which consists of command line shell and associated Scripting language built on the .Net Framework and .Net Core. moreover, PowerShell is an object oriented automation engine and script language that helps administrators configure and automate administrative tasks.
What is cmdlets ?
cmdlets stand "Command Let", which is the basic unit in PowerShell that performs a single task. It is like the users order for the operating system or an application for a specific service.
PowerShell uses function called "cmdlets" and Window Command line uses Command Statement.
Few points:
- It is a specialized .NET Class that implements a specific tasks or operation.
- It has mandatory and optional parameters that control how the cmdlets operate.
- It is lightweight script that performs a single task.
- It is written a compiled .NET language
Comments
Post a Comment