[Search for users] [Overall Top Noters] [List of all Conferences] [Download this site]

Conference decwet::networker

Title:NetWorker
Notice:kits - 12-14, problem reporting - 41.*, basics 1-100
Moderator:DECWET::RANDALL.com::lenox
Created:Thu Oct 10 1996
Last Modified:Fri Jun 06 1997
Last Successful Update:Fri Jun 06 1997
Number of topics:750
Total number of notes:3361

641.0. "logs on backup with save or savefs" by LIL04::MATHIEU () Wed Apr 30 1997 09:18

    Hi,
    
    I use NT client 4.3 on alpha and nsr 4.2B on server UNIX.
    
    The backups are in .BAT scripts and execute by AT .
    
    I want to have a log on my backups.
    
    Exemple on .bat
    
    savefs -v -s serveur -l full C:
    
    I want to have the results of this backup in a .log
    
    I try with AT :
    
    AT HH:MM "test.bat > test.log"
    
    I have in test.log only the command savefs but not the results.
    
    If I do test.bat > test.log , it's the same pb
    
    Can someone help me ?
    
    Thankls
    
    philippe
T.RTitleUserPersonal
Name
DateLines
641.1DECWET::RANDALLWed Apr 30 1997 12:085
try test.bat 2> test.log.  save and savefs send most of their output
to stderr instead of the usual stdout so you need to make sure
that you collect that ouput in the log file.

-- Rich Randall
641.2Thanks , it's OKLIL04::MATHIEUMon May 12 1997 02:405
    Rich,
    
    Thanks for your answer . It's OK.
    
    Philippe