Henrik
FYI I have successfully upgraded my Test Server Install, but during testing I have come across a small problem.
I created a folder D:\DEV06\Test on the remote Server and then this simple batch file in it.
@echo off
echo. >> Test.log
echo %1 >> test.log
echo. >> Test.log
echo %time% >> Test.log
When I schedule this with O as the Argument, the parameter does not get passed. Here is the output generated:
ECHO is off.
18:15:00.44
When I run it locally with "O" as the parameter I get:
O
18:19:53.92
This is not a show stopper as I can wrap the 'real' batch file I want to call, but I thought you should know.
HTH
Dave J