It is hard to tell what's causing this in your case. This particular feature merely calls a Windows API function NetLocalGroupEnum, and for some reason it fails on many of your machines. We could add some code to display what error it returns, but it will likely return something like 'access is denied' without an explanation why.
If you have WMI enabled and working on your computers, you could instead execute this VBScript under
Options - Remote Scripting. It simply connects to each computer's WMI system and executes a couple of queries to get local administrators.
'Input parameters
strComputer = Input.Current
Set objWMIService = GetObject("winmgmts:\\" & strComputer & "\root\cimv2")
'Get computer name
Set colItems = objWMIService.ExecQuery("Select Name from Win32_ComputerSystem")
If colItems.Count = 0 Then
Output.Write "No name assigned"
Else
For Each objItem in colItems
'Get admins on that computer
Set colUsers = objWMIService.ExecQuery("ASSOCIATORS OF {Win32_Group.Domain='" & objItem.Name & "',Name='Administrators'} WHERE AssocClass=Win32_GroupUser")
For Each objUser in colUsers
Output.Write objUser.Name
Next
Next
End If