Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the rocket domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /var/www/practical-tips.com/wp-includes/functions.php on line 6114

Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the mailchimp-for-wp domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /var/www/practical-tips.com/wp-includes/functions.php on line 6114

Notice: 函数 _load_textdomain_just_in_time 的调用方法不正确soledad 域的翻译加载触发过早。这通常表示插件或主题中的某些代码运行过早。翻译应在 init 操作或之后加载。 请查阅调试 WordPress来获取更多信息。 (这个消息是在 6.7.0 版本添加的。) in /var/www/practical-tips.com/wp-includes/functions.php on line 6114
创建批处理文件 - Practical Tips

创建批处理文件

by Pramith

要创建和编排批处理文件,你只需要微软的文本编辑器–当然还有批处理命令。在这个实用的提示中,你将学习如何在小的示例程序的帮助下创建批处理文件。

创建批处理文件。如何进行

利用批处理文件,你可以编写小程序,从而,例如,编写一个程序,用它来关闭计算机,并给出评论和20秒的时间。要做到这一点,步骤如下。

  • 打开编辑器,开始输入”@echo off”。
  • 在下一行输入命令 “echo 你真的想关闭电脑吗?”。接下来是 “暂停 “命令。
  • 在下一行,输入 “shutdown -s -c ‘此电脑将在20秒后关闭’-t 20”.
  • 现在你必须把文件保存为批处理文件。要做到这一点,点击 “文件 “和 “另存为”。选择 “文件类型 “下的 “所有文件”,并导航到所需的存储位置。
    • 你可以在 “文件名 “下指定一个你选择的名字。然而,重要的是,该名称后面要有扩展名”.bat”。例如,该程序可以被称为 “Shutdown.bat”。点击 “保存 “进行确认。
    • 如果你现在双击该文件,该程序将被执行,20秒后电脑将关闭。

    其他批处理命令

    尽管批处理文件只是简单的程序,但你可以用它们做很多事情。你可以通过在命令提示符中输入 “帮助 “来获得所有批处理命令。作为一个例子,这里有一个小程序,可以终止进程并启动google.de的浏览器。你必须用按键确认每个步骤。

      • 再次打开编辑器,以”@echo off “开始。
      • 你想做的最后一件事就是打开google.com。要做到这一点,请输入 “start chrome.exe https://www.google.de/”。在下面输入 “taskkill /IM chrome.exe “来杀死Chrome。你可以通过在控制台输入 “tasklist “找到更多进程。
      • 在下一行,输入 “暂停”。Windows现在将等待你的下一次输入。
      • 你可以使用上述说明将该文件保存为批处理文件,并通过双击它来启动它。

Related Articles

Leave a Comment