PowerShell Arrays
Last updated:
POWERSHELL
How to create arrays
An empty array can be created by using @()
Example array:
$ExampleArray = @(
"C:\test",
"C:\test2"
)
references:
Last updated:
An empty array can be created by using @()
Example array:
$ExampleArray = @(
"C:\test",
"C:\test2"
)
references: