hi, after nxmc -clean the console start without problem
thank you
Andrea
thank you
Andrea
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts MenuExternalTable=VMList:instanceColumns=Index;description=Tabella lista VM;separator=|:powershell C:\NetXMS\script\vm.ps1$s = "Index|Name|State|Status";
$i = 1;
$vm = Get-VM;
ForEach($item in $vm)
{
$s = $s + "`n" + $i + "|" + $($item.Name) + "|" + $($item.State) + "|" + $($item.Status) ;
$i = $i +1;
}
echo $s;