2 lines
260 B
PowerShell
2 lines
260 B
PowerShell
$json = Get-Content 'C:\Users\Administrator\.local\share\kilo\tool-output\tool_c81d60ce2001OuIoznxyiOkZVQ' | ConvertFrom-Json
|
|
$json | ForEach-Object { Write-Host ("Name: " + $_.name + " | Status: " + $_.status + " | UUID: " + $_.uuid + " | URL: " + $_.fqdn) }
|