cmd msg命令文本大小和颜色

时间:2017-05-09 12:02:05

标签: batch-file cmd msgbox

我有一个.bat文件在我的shool中运行,警告用户除非报告,否则对设备造成的任何损坏都将受到惩罚。我希望这个msg框中的文本更大,颜色/字体不同。我是怎么做到的?我的msg命令如下所示:msg * /time:30 <text here> 提前感谢任何答案。

2 个答案:

答案 0 :(得分:3)

您可以使用batch / mshta polyglot script创建try.Here是一个示例。使用bat扩展名保存:

<!-- :
@echo off
start "" mshta.exe "%~f0"
exit /b
-->

<html>
<head><title>HTA window</title></head>
<body bgcolor="green"><h1><font size="3" color="red face="verdana">message</h1></font ></body>
<button onclick="myFunction()">OK</button>
<script>
function myFunction() {
    window.close();
}
</script>
</html>

您可以根据需要自定义布局。要在不同的会话中运行,您必须使用runas命令 - https://superuser.com/questions/42537/is-there-any-sudo-command-for-windows

答案 1 :(得分:-1)

使用MSG命令没有规定。您必须使用自己的程序执行此操作。