Zurück   Trojaner-Board > Web/PC > Alles rund um Windows

Alles rund um Windows: Protokollhilfe für die Kommandozeile

Windows 7 Hilfe zu allen Windows-Betriebssystemen: Windows XP, Windows Vista, Windows 7, Windows 8(.1) und Windows 10 / Windows 11- als auch zu sämtlicher Windows-Software. Alles zu Windows 10 ist auch gerne willkommen. Bitte benenne etwaige Fehler oder Bluescreens unter Windows mit dem Wortlaut der Fehlermeldung und Fehlercode. Erste Schritte für Hilfe unter Windows.

Antwort
Alt 25.09.2008, 17:24   #1
MightyMarc
 
Protokollhilfe für die Kommandozeile - Standard

Problem: Protokollhilfe für die Kommandozeile



Da mir das ständige Kopieren und Umleiten in der DOS-Box zu blöd geworden ist, habe ich kurz eine Minibatch geschrieben, die das übernimmt. Nichts wildes aber mir spart die Batch etwas Zeit und Nerven. Für die, die soetwas auch brauchen könnten:



Code:
ATTFilter
@echo off

Title Protokollhilfe
color 6F
set target="%userprofile%\Desktop\prot.txt"

:prompt
cls
echo.
echo Kommando (x fuer Ende):
echo.
set /p com=

if "%com%"=="x" goto ende
%com% > %target%
notepad %target%
goto prompt

:ende
exit
         
Wer fortlaufend etwas in die datei schreiben will, ändert am besten das
Code:
ATTFilter
%com% > %target%
notepad %target%
         
in das
Code:
ATTFilter
%com% >> %target%
         
Alternativ kann man sich auch ein µ-Menü basteln.

Marc
__________________
When you contact tech support, a lot of people feel like they're either talking to an idiot or being treated like one.

Geändert von MightyMarc (25.09.2008 um 17:29 Uhr)

Alt 26.09.2008, 09:30   #2
Master_Jogi
Gast
 
Protokollhilfe für die Kommandozeile - Standard

Protokollhilfe für die Kommandozeile Anleitung / Hilfe



Danke Das ist das was ich schon sei ein dreivirtel jahr versuche hinzukrigenAllerdings Speichert der Batch, was ich auch will in meinen log Ordner
Oker gefält mir nicht 0A als color ist für mich angenemer(Grün auf Schwarz).


Code:
@echo off
Title Protokollhilfe
color 0A
set target="C:\logfile\prot.txt"
: prompt
cls
echo.
echo Kommando (exit fuer Ende):
echo.
set /p com=
if "%com%"=="exit" goto ende
%com% >> %target%
notepad %target%
goto prompt
:ende
exit
__________________


Alt 27.09.2008, 14:08   #3
cad
/// caddy ☀
 

Protokollhilfe für die Kommandozeile - Standard

Protokollhilfe für die Kommandozeile Details



Kommt für mich zum richtigen Zeitpunkt

Danke Marc

Auch wenn ich als erstes die Farbe geändert habe

Gruß cad
__________________
__________________

Alt 27.09.2008, 15:40   #4
MightyMarc
 
Protokollhilfe für die Kommandozeile - Standard

Lösung: Protokollhilfe für die Kommandozeile



Hab die Batch etwas flexibler gestaltet. Man kann den namen frei wählen und in alte Datei reinschreiben (anhängen):


Code:
ATTFilter
@echo off

Title Protokollhilfe
color 6F
set verz=%userprofile%\Desktop\Logdateien
if not exist %verz% md "%verz%"
set ext=log

:prompt
cls
rem @echo on
echo.
echo Zielverzeichnis:
echo.
echo %verz%
echo.
echo Dateierweiterung: %ext%
echo.
dir "%verz%" /b | findstr ".log"
echo.
echo.
echo Kommando (x fuer Ende):
echo.
set /p com=

if "%com%"=="x" goto ende

echo.
echo Name der Protokolldatei (.log wird automatisch angehaengt):
echo.
set /p name=

set vollpfad="%verz%\%name%.%ext%"

echo ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ >> %vollpfad%
echo %date% >> %vollpfad%
echo %time% >> %vollpfad%
echo. >> %vollpfad%
%com% >> %vollpfad%
notepad %vollpfad%
goto prompt

:ende
exit
         
Wer will kann ja auch noch vorgegebene Speicherorte einbauen ("Speichern in Pfadnr.: ").

Marc
__________________
When you contact tech support, a lot of people feel like they're either talking to an idiot or being treated like one.

Geändert von MightyMarc (27.09.2008 um 15:46 Uhr)

Alt 30.09.2008, 06:54   #5
Master_Jogi
Gast
 
Protokollhilfe für die Kommandozeile - Daumen hoch

Wie Protokollhilfe für die Kommandozeile



Auch wenn ich wieder die farbe geändert habe.
Weiter so
BD


Antwort

Themen zu Protokollhilfe für die Kommandozeile
beste, besten, blöd, brauche, code, datei, desktop, fortlaufend, komma, kommandozeile, kopieren, laufe, laufend, nerve, nichts, protokollhilfe, ständige, umleiten, ändert





Zum Thema Protokollhilfe für die Kommandozeile - Da mir das ständige Kopieren und Umleiten in der DOS-Box zu blöd geworden ist, habe ich kurz eine Minibatch geschrieben, die das übernimmt. Nichts wildes aber mir spart die Batch - Protokollhilfe für die Kommandozeile...
Archiv
Du betrachtest: Protokollhilfe für die Kommandozeile auf Trojaner-Board

Search Engine Optimization by vBSEO ©2011, Crawlability, Inc.