在批处理脚本中打开程序后关闭控制台

MD Aminul Islam 2022年5月31日
在批处理脚本中打开程序后关闭控制台

我们可以使用 SET 命令从批处理脚本运行程序。众所周知,用于此目的的一般格式如下。

start "Windows Title" c:\Location\file.exe` or `start "c:\location\" file.exe

但这样一来,控制台在后面保持打开状态。

本文将展示我们如何在打开程序后关闭控制台或命令提示符。我们将看到一个带有解释的示例,以便更好地理解。

在批处理脚本中打开程序后关闭控制台

我们将为此目的使用的一般格式就像我们上面讨论的那样。我们只是在末尾添加了一个 EXIT 关键字。

此关键字将在执行批处理脚本中指定的程序后关闭命令提示符。让我们看一下我们的代码。

@echo off
START c:\windows\system32\notepad.exe
EXIT

你可以看到在 START c:\windows\system32\notepad.exe 这行,我们运行 notepad.exe。最后,我们在代码中包含关键字 EXIT,以在执行上述命令后关闭命令提示符。

当你运行此代码时,你将看到在运行 notepad.exe 后命令提示符已关闭。

请记住,这里讨论的所有方法都是使用批处理脚本编写的,并且只能在 Windows CMD 环境中工作。

MD Aminul Islam avatar MD Aminul Islam avatar

Aminul Is an Expert Technical Writer and Full-Stack Developer. He has hands-on working experience on numerous Developer Platforms and SAAS startups. He is highly skilled in numerous Programming languages and Frameworks. He can write professional technical articles like Reviews, Programming, Documentation, SOP, User manual, Whitepaper, etc.

LinkedIn

相关文章 - Batch Program