更改批处理文件日志

时间:2016-12-30 21:28:33

标签: windows batch-file

我正在从批处理文件中执行exe文件。这将运行Windows应用程序。每次我在应用程序中执行某些活动时,都会在批处理命令提示符中打印日志。我想用颜色突出显示日志中的特定文本,以便我可以精确定位后端活动。我该怎么做?

我的批处理文件看起来像这样?

cd C:\[Exe file location]
C:\[Exe File]
pause

1 个答案:

答案 0 :(得分:0)

您可以创建自己的echo命令。

将以下行放入桌面上名为ColourText.bas的文件中。

Imports System
Imports System.IO
Imports System.Runtime.InteropServices
Imports Microsoft.Win32

Public Module MyApplication  
Public Declare Function GetStdHandle Lib "kernel32" Alias "GetStdHandle" (ByVal nStdHandle As Long) As Long
Public Declare Function SetConsoleTextAttribute Lib "kernel32" Alias "SetConsoleTextAttribute" (ByVal hConsoleOutput As Long, ByVal wAttributes As Long) As Long
Public Const STD_ERROR_HANDLE = -12&
Public Const STD_INPUT_HANDLE = -10&
Public Const STD_OUTPUT_HANDLE = -11&

Sub Main()
    Dim hOut as Long
    Dim Ret as Long
    Dim Colour As Long
    Dim Colour1 As Long
    Dim Text As String
    hOut  = GetStdHandle(STD_OUTPUT_HANDLE)
    Colour = CLng("&h" & Split(Command(), " ")(0))
    Colour1 = Clng("&h" & Split(Command(), " ")(1))
    Text = Mid(Command(), 7)
    Ret = SetConsoleTextAttribute(hOut,  Colour)
    Console.Out.WriteLine(text)
    Ret = SetConsoleTextAttribute(hOut, Colour1)
End Sub
End Module

保存并在命令提示符下键入以下内容。

"C:\Windows\Microsoft.NET\Framework\v4.0.30319\vbc.exe" /target:exe /out:"%userprofile%\desktop\ColourText.exe" "%userprofile%\desktop\ColourText.bas" /verbose

桌面上会出现一个名为ColourText.exe的文件。 将其移至Windows文件夹

要使用,您必须使用两个字符代码来设置颜色,例如01而不是1

ColourText ColourOfText ColourOfTextWhenFinished Text

EG要通过不传递任何文本在白色上设置蓝色,则在白色文本上设置为红色,在灰色时以蓝色显示。

ColourText F1 F1
ColourText F2 71 This is green on white

ColourText F1 F1
cls
ColourText F4 F4
Echo Hello
Echo Hello today
ColourText F1 F1

此外,CLS命令变得有趣。不带参数的Color命令会将所有颜色重置为启动颜色。

要获取颜色代码,请将以下数字添加到一起。在程序员模式下使用Calculator。这些是十六进制数。它们可以加在一起,例如红+蓝+ FG强度= 13 = D.由于未使用10+,背景将为黑色。颜色代码必须是两个字符,例如08而不是8

FOREGROUND_RED = &H4     '  text color contains red.
FOREGROUND_INTENSITY = &H8     '  text color is intensified.
FOREGROUND_GREEN = &H2     '  text color contains green.
FOREGROUND_BLUE = &H1     '  text color contains blue.
BACKGROUND_BLUE = &H10    '  background color contains blue.
BACKGROUND_GREEN = &H20    '  background color contains green.
BACKGROUND_INTENSITY = &H80    '  background color is intensified.
BACKGROUND_RED = &H40    '  background color contains red.