Running powershell in VB.NET - how to access the content of my variable
问题 I am running a simple script in VB using System.Management.Automation as below Script runs fine, but how do I then access content of $offline and $online in my code after it has run? Dim scriptContents = New StringBuilder() scriptContents.AppendLine("$computers = @(""PC-1"", ""PC-2"", ""PC-3"")") scriptContents.AppendLine("$online = @()") scriptContents.AppendLine("$offline = @()") scriptContents.AppendLine("Foreach ($computer in $computers) {") scriptContents.AppendLine("If (Test-Connection