Creating arrays in PowerShell is easy using the comma delimiter. The next line creates an array with five elements: $myArray = 'Hello' , 12, ( Get-Date ), $null , $true $myArray . Count To access array elements, use square brackets and the element...