English 中文(简体)
如何在使用起始指挥时通过打字机改变指挥窗口的颜色
原标题:How can i change the colour of a command window via batch script when using the start command

i 正在使用一些小型批号,用机器复印机复制从一个地点到另一个地点的数据。

i 沿用了以下样本。

这些批量档案中的每一份都需要做的是,要开立并操作所列出的机器人指挥系统(它正在这样做),但需要每个批量档案的机器人输出窗口。

the batch file reads as below start ro ex ex

start ro ex ex

start ro ex ex

以上所述一切都会被罚款,但不能使机器人家改变肤色。 (上面第3类是一彩色的罚款,如上所示,我们将另立一个批量,但有不同的彩色,对复制件加以区别)。

这是甚至可能的。

i 知道被点击的指挥可能发生彩色变化,但只能用于这一窗口。 由于机器人指挥打开了一个新窗口,彩色环境不会倒塌,

在这方面的任何帮助或想法都将受到高度赞赏。 我们需要使该守则简单化,因为不同的用户需要使用该守则。

最佳回答

。 可以用参数/参数来说明肤色。 g:start trid /T:5A 一个新的指挥窗口,有纯度(5)背景和光绿色文本(A)

你可以利用C或K,在新案件中开始新的指挥(C在完成后终止)。

i.e.start trid /T:5A /K robocopy....

问题回答

如果你将2个单独的小船编成批号,那么你可以改变颜色。

页: 1

color 71
robocopy.exe "source" "destination" /MIR /Log:e:outputlog.txt /TEE

页: 1

color 75
robocopy.exe "source" "destination" /MIR /Log:e:outputlog.txt /TEE

then your original thing does

call bat1.cmd
call bat2.cmd

这是否对你有用?





相关问题
Why running a service as Local System is bad on windows?

I am trying to find out the difference between difference service account types. I tumbled upon this question. The answer was because it has powerful access to local resources, and Network Service ...

Programmatically detect Windows cluster configuration?

Does anyone know how to programatically detect that a Windows server is part of a cluster? Further, is it possible to detect that the server is the active or passive node? [Edit] And detect it from ...

get file icon for Outlook appointment (.msg)

I ve read Get File Icon used by Shell and the other similar posts - and already use SHFileInfo to get the associated icon for any given extension, and that works great. However, Outlook uses ".msg" ...

Identifying idle state on a windows machine

I know about the GetLastInputInfo method but that would only give me the duration since last user input - keyboard or mouse. If a user input was last received 10 minutes ago, that wouldn t mean the ...

Terminating a thread gracefully not using TerminateThread()

My application creates a thread and that runs in the background all the time. I can only terminate the thread manually, not from within the thread callback function. At the moment I am using ...

热门标签