July 2018
Beginner
552 pages
13h 18m
English
Operators are the heart of every programming language. With operators, you can make comparisons or modifications to and between values. PowerShell offers a big set of operators, and it is important to get comfortable with most of them. You will need them in most of your scripts, and the ones that are not well-known could provide you with additional capabilities to create even more efficient code. You can find information on the operators via Get-Help, as follows:
#clip.exe stores the retrieved data to the clipboard#you can just paste the content into a word or text file#Get-Help to operators in general - gives an overviewGet-Help about_Operators | clip.exe #Get-Help about PipelinesGet-Help about_Pipelines | clip.exe #Get-Help to ...
Read now
Unlock full access