SETM requires administrative privileges under Windows NT/2000/XP.

Did you even take a look at the PathMod() UDF? Did you read the Kixtart manual with regards to the differences between SET/SETL/SETM?

You could also add the path domain-wide via remote registry writes along the lines of the PathMod() UDF.

Code:

SET "PATH="H:\Lotus\Notes\"


However, this will remove any other path that has been associated with the PATH environment variable. Better isCode:

SET "PATH="%PATH%;H:\Lotus\Notes\"

, however you should check whether the path is already included in %PATH%.
_________________________
There are two types of vessels, submarines and targets.