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