Posted by Chris on 02/15/07 17:12
Setup: IIS 6 with PHP 5.2.0
We are trying to make a COM object that uses ADSI to reset Active
Directory domain accounts. We can get the script to work great in
IE7, but anyone stilll using IE6 has problems. We are using
authentication (IWA and IIS configured not to allow anonymous) via the
browser.
I also have the same problem with a simple example script off of php's
site (http://us3.php.net/com)
<?php
$domainObject = new COM("WinNT://Domain");
foreach ($domainObject as $obj) {
echo $obj->Name . "<br />";
}
?>
In Internet Explorer 6 I just get "Schema". With IE7, I get the full
list of objects...
Navigation:
[Reply to this message]
|