我正在使用 System.Management.Automation 在 VB 中运行一个简单的脚本,如下所示
脚本运行良好,但如何在运行后访问我的代码中的 $offline 和 $online 的内容?
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 -ComputerName $computer -Count 2 -Quiet -ErrorAction SilentlyContinue) {")
scriptContents.AppendLine("$online += $computer")
scriptContents.AppendLine("}")
scriptContents.AppendLine("Else {")
scriptContents.AppendLine("$offline += $computer")
scriptContents.AppendLine("}")
scriptContents.AppendLine("}")
Using ps As PowerShell = PowerShell.Create()
ps.AddScript(scriptContents.ToString)
Dim results1 As PSDataCollection(Of PSObject) = Await Task.Run(Function() ps.InvokeAsync)
Stop
End Using
谢谢