according to most of the reference materials I have seen the "/um" switch is
meant ot work only with windows 2000
However it appears to have a function in server 2003, e.g. the only way I
could get the batch file below to work was to use the "/um" switch at the
end of the command line
Is there any documentation for this switch in server 2003?
Am I correct that "/um" does indeed have a function in server 2003?
*****************************************
setlocal
Set CURRDATE=%TEMP%\CURRDATE.TMP
DATE /T > %CURRDATE%
Set PARSEARG="eol=; tokens=1,2,3,4* delims=/, "
For /F %PARSEARG% %%i in (%CURRDATE%) Do SET dte=%%k%%j%%i
pushd %windir%\system32\
net stop NtmsSvc
net start NtmsSvc
start /wait rsm.exe refresh /lf"Dell PowerVault 110T LTO2 Tape Drive"
NTBACKUP.EXE backup "@c:\progra~1\rogabat\file.bks" /N "%DTE%" /v:yes /r:no
/rs:no /hc
n /m normal /l:s /p "LTO Ultrium" /UM
popd
rem clean up
if exist %CURRDATE% del %CURRDATE%
*****************************************
regards
Roga