Trying to use the system() function in my php code on a windows server 2003 system.
Simple commands like:
system('dir');
work fine, but
system('net stop spooler');
doesn't work.
I guess this is a problem with windows user rights, but is there anything I can change in my script to make it work without having to start changing the windows user rights as I don't want to affect the security of windows?