July 2017
Beginner
222 pages
5h 2m
English
Parameters are the input values that we pass to a cmdlet. For example, if we have to get the time zone, we can use the following cmdlet:
Get-TimeZone
This cmdlet gets the current time zone or a list of available time zones.
These are the parameters:
We can use this command with or without these parameters:
Get-TimeZone
The following screenshot shows the output for the preceding command:
We can use this command with the Name parameter:
Get-TimeZone -Name "*pac*" ...
Read now
Unlock full access