Powershell : Using Get-Member to Explore Cmdlets

This article is in continuation of my previous article. We know what cmdlet to use, but how to know that what properties and functions a cmdlet can access and perform, this is big question. Until you know the Attributes and Functions you can access through powerhshell, you can’t use them in your scripts. Here is how… Read More Powershell : Using Get-Member to Explore Cmdlets

Powershell : Command your CMDLET’s

A cmdlet is a lightweight command that is used in the Windows PowerShell environment. SYNTAX : Verb-Noun -Parameter Value -SwitchParameter Command name Commands always begin with a command name, such as New-Alias. Type the command name or its alias, such a “gcm” for Get-Command. Parameters The parameters of a command are options that determine what the… Read More Powershell : Command your CMDLET’s