OK, I did a very simple scan with all non DoS plugins selected and I received identical results as you have. I am going to look at the NASL code in these plug-ins and see exactly what they do. Stay tuned...


--TH13

**EDIT**

Here is your problem:

Code:
script_dependencies("netbios_name_get.nasl",
 		    "smb_login.nasl","smb_registry_access.nasl",
		    "smb_registry_full_access.nasl");
 script_require_keys("SMB/name", "SMB/login", "SMB/password",
		     "SMB/domain","SMB/transport");

 script_require_ports(139, 445);
 exit(0);
exit(0);
}

include("smb_nt.inc");

rootfile = registry_get_sz(key:"SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\AOL Instant Messenger", item:"DisplayName");
if(rootfile)
{
 security_note(get_kb_item("SMB/transport"));
}
Are you able to login and obtain full access to these hosts? As you can see, it looks for a registry value and unless you can see the registry, it thinks that AIM is not installed.