Script batch - Registrazione
L'accesso è possibile in Batch Script utilizzando il comando di reindirizzamento.
Sintassi
test.bat > testlog.txt 2> testerrors.txt
Esempio
Crea un file chiamato test.bat e inserisci il seguente comando nel file.
net statistics /Server
Il comando precedente ha un errore perché l'opzione per il comando net statistics è data nel modo sbagliato.
Produzione
Se il comando con il file test.bat sopra viene eseguito come
test.bat > testlog.txt 2> testerrors.txt
E apri il file testerrors.txt, vedrai il seguente errore.
The option /SERVER is unknown.
La sintassi di questo comando è:
NET STATISTICS
[WORKSTATION | SERVER]
Ulteriore aiuto è disponibile digitando NET HELPMSG 3506.
Se apri il file chiamato testlog.txt, ti mostrerà un registro di quali comandi sono stati eseguiti.
C:\tp>net statistics /Server