Ok so I figured out that if I use php command line I can stop/start a service???
so test.php (not in the wwwroot)
looks like
<?
echo passthru("net start MyService");
?>
so if I go to start, run, and type
C:\PHP\php.exe C:\DIR\test.php
it will start the service. So why would it work this way from php but not through the webserver?
Thanks
Chris Wheat