All questions related to installations, configurations and maintenance of Advanced Host Monitor (including additional tools such as RMA for Windows, RMA Manager, Web Servie, RCC).
I have just setup a shell script to return time from a remote computer, but my script returns no results. What am I doing wrong here? Thanks in Advance.
Start Cmd: cmd /c %Script% %Params%
Script:
@echo off
You do not assign result of the "net time" command to any variable.
Script should be like
================
@echo off
Net Time %1 >res.tmp
set /P res1=< res.tmp
del res.tmp
echo ScriptRes:Ok:%res1%
================