I use the following code to get the value of the attribute NAME of an AD computer object:
$compObj = Win32::OLE->GetObject("LDAP://cn=$computername,dc=test,dc=com");
print "$compObj->{Name}";
How can I get information of all the attributes stored in the object? I miss a method like a dump function or something like that. How can I find out which possible attributes are existent?