What does the “@” symbol do in PowerShell?
PowerShell will actually treat any comma-separated list as an array: So the @ is optional in those cases. However, for associative arrays, the @ is required: Officially, @ is the “array operator.” You can read more about it in the documentation that installed along with PowerShell, or in a book like “Windows PowerShell: TFM,” which … Read more