Forum: [VBP] Third Party Tools
06-24-2015, 04:18 PM
|
Replies: 2
Views: 12,685
|
Forum: [VBP] Third Party Tools
06-23-2015, 01:04 PM
|
Replies: 2
Views: 12,685
Strange PowerShell behavior with arguments
When I pass command-line arguments to PowerShell, I can see them if I do this:
foreach ($i in $args)
{Write-Host $i}
And $args.count returns the correct number.
However, whenever I try...
|