1

I want to make it with a *.bat file, how would I do this? I haven't really that much experience with *.bat files, so I need help.

(I would be using this for several different things, I am not willing to explain what they are, but that is because I cannot share everything.)

4

3 回答 3

1

您可以使用它来批量创建弹出消息框:

msg * your message
于 2012-05-17T12:21:12.150 回答
1

您可以使用一个简单的 VBS 脚本来创建一个文本弹出窗口。

消息框.vbs

MsgBox WScript.Arguments(0)

然后你可以简单地从命令行或批处理文件中执行以下操作

msgbox "Hello world!"
于 2012-05-17T12:40:23.770 回答
0

我实际上在 Visual Studio C# 中制作了我需要的东西,然后将其转换为 Delphi,然后制作了一个 *.exe

于 2012-05-18T12:35:40.447 回答