Hi,
I started experimenting ADSI few days ago. This script, e.g., starts the first website. I don't know more about the provided interfaces for the website-object, but it is said somewhere M$ has left some documentation for that.
Hope this helps, best regards.
King Louie
<?php
$obj = new COM('IIS://YOURCOMPNAME/W3SVC/1');
if ($obj) {
echo $obj->start();
}
else echo 'error';
?>