Closed
Description
$x = 100000
$EmailList = For ($i=0;$i -lt $x;$i++) {
"$(Get-RandomString -length 10)@$(Get-RandomString -length 10).com"
}
$EmailList | Set-Content -Path .\file1.txt
In the above code sample "-le" is highlighted in a different color than the rest of the string. "-Length" is a parameter of a helper function in the same script.