home *** CD-ROM | disk | FTP | other *** search
/ Inside Multimedia 1995 December / IMM1295.ISO / magazin / tips / sys95na.bat < prev    next >
DOS Batch File  |  1995-10-18  |  983b  |  33 lines

  1. @echo off
  2. rem SYS95NA.BAT
  3.  
  4. rem SYS95NA.BAT - Erstellt Log-Dateien des Windows und des Windows-System-Verzeichnisses
  5. rem mit dem DOS-Befehl DIR
  6. rem Ausserdem werden die Inhalte der WIN.INI, der SYSTEM.INI und der Registrierdatei gesichert
  7.  
  8. rem Voraussetzungen:    Datei REGEDIT.EXE mu▀ sich im Pfad befinden.
  9. rem            Das Verzeichnis C:\WINDOWS\TEMP existiert.
  10.  
  11. rem von Frank-Thomas Riese 
  12. rem veroeffentlicht in In'side MULTIMEDA 12/95, TRONIC-Verlag, Eschwege
  13.  
  14. cls
  15. ECHO **  In'side MULTIMEDIA  **      --------- Tip von Frank-Thomas Riese ---------
  16.  
  17. REM Eventuelle DIR-Parameter unterdruecken (z.B. /P)
  18. SET OLDIRCMD=%DIRCMD%
  19. SET DIRCMD=
  20.  
  21. c:
  22. cd\
  23. dir c:\windows\*.* /O:N /O:E > C:\windows\temp\dirwinna.txt
  24. dir c:\windows\system /O:N /O:E > C:\windows\temp\dirsysna.txt
  25. copy c:\windows\win.ini c:\windows\temp\iniwinna.txt
  26. copy c:\windows\system.ini c:\windows\temp\inisysna.txt
  27. regedit /e c:\windows\temp\regna.txt
  28. cd\
  29.  
  30. SET DIRCMD=%OLDIRCMD%
  31. SET OLDIRCMD=
  32.  
  33.