We know about PowerShell then we must know about 3 cmdlet which will always help us to lean and solve the problem for us about to do things in Powershell Scripting. PowerShell its self is self explanatory scripting language by its very strong Help system.
According to me these are 3 three command as follows :
- Get-help
- Get-command
- Get-member
Today, we will discuss about the cmdlet get-help.This is one of important cmdlet which help us to write the script and search command and give us the way to use it in different ways and with example.
how can we use Get-help cmdlet .
Syntax : Get-help <cmdlet> -detail/full/example
here <command> means we need to know help of cmdlet of Powershell goes there and with 3 important parameter detail , full , example . we can use the Get-help cmdlet with wildcard which make it more strong cmdlet of Powershell in any version.
So let Start it
1)If we don’t know about the command which we want to use white-card play a import role here.suppose we know we have to use some service base comlet.
Get-help *service*
Here whitecard help us give query that get the cmdlet which contain service name

Suppose if we use Get-help *service then that means we need cmdlet which is ended by service.if you notice above and below screenshot you notice that New-WebserviceProxy is not display in below because our query is display the cmdlet where service is at the end and here service is in between.

Some more example on when * (whitecard)
Get-help *ser* -> get the cmdlet which have “ser” in between

Get-help Get* -> get the cmdlet which started with “Get”
Next post we will know more about Get-help with parameters
Do you want more then Please Share this:
Like this:
Like Loading...