If you’ve used PowerShell for any time you will be away of [int] meaning integer. One common use is in functions to define a parameter’s data type function test1 { param ( [int]$a, [int]$b ) $a * $b } We can use this function PS> test1 -a 10 -b… Read the full text.