H
HuanManwe
Hello,
what I want to do is:
1.- Use a .bat file to get into a Win2003 Server (already done)
2.- Execute there "start services.msc" (I can only make it work
locally)
The idea was to see if certain services were started or not. For
example the IIS Server. But at least I needed to execute something
there.
This is what I've done until now.:
Code:
--------------------
@echo off
net use Q: \\servername domainname /user:serverIP\adminname password /PERSISTENT:NO
pause
echo We're in but now I try and execute services.msc:
START C:\WINDOWS\system32\services.msc
goto end
:end
echo End of process
--------------------
Can you help me?
Thank you all in advance.
what I want to do is:
1.- Use a .bat file to get into a Win2003 Server (already done)
2.- Execute there "start services.msc" (I can only make it work
locally)
The idea was to see if certain services were started or not. For
example the IIS Server. But at least I needed to execute something
there.
This is what I've done until now.:
Code:
--------------------
@echo off
net use Q: \\servername domainname /user:serverIP\adminname password /PERSISTENT:NO
pause
echo We're in but now I try and execute services.msc:
START C:\WINDOWS\system32\services.msc
goto end
:end
echo End of process
--------------------
Can you help me?
Thank you all in advance.