bat批处理文件运行时隐藏cmd窗口

想让bat运行时隐藏cmd窗口,最好的方法是使用vbs文件实现,
1、新建一个文本文档,改名为123.vbs,编辑内容:
set ws=WScript.CreateObject("WScript.Shell") 
ws.Run "yy.bat",0
yy.bat是同目录下的批处理文件。双击123.vbs,即可运行批处理文件,但没有cmd窗口弹出。

缺点:这种方法可以隐藏cmd窗口,但不能隐藏bat中打开的第三方窗口。如yy.bat的内容为:WinRAR.exe x  D:\mm.tar D:\mm22(解压tar文件)运行123.vbs时,WinRAR的解压窗口是可以看到的。
方法2:编辑bat文件,在开头处写入
@echo off
if "%1" == "h" goto begin
mshtavbscript:createobject("wscript.shell").run("""%~nx0"" h",0)(window.close)&&exit
:begin
REM
缺点:这个方法运行bat时,cmd窗口还是闪了一下。
时间: 2024-10-19 19:22:45

bat批处理文件运行时隐藏cmd窗口的相关文章

Java执行bat批处理文件,并关闭cmd窗口

package com.baobaotao.test; import java.io.IOException; public class CmdMain { public static void main(String[] args) { // 执行批处理文件 String strcmd = "cmd /c start E:\\run.bat"; Runtime rt = Runtime.getRuntime(); Process ps = null; try { ps = rt.ex

解决python在windows上运行弹出cmd窗口(dos窗口)

运行python程序的时候会在背景显示一个cmd,要想不显示其实很简单(虽然是我找了1个小时...才了解的基本知识) 方法1:pythonw xxx.py 方法2:将.py改成.pyw (这个其实就是使用脚本解析程序pythonw.exe) 原文: 1) Try changing the file extension to .pyw. Double-clicking a .pyw will use pythonw.exe instead of python.exe. python.exe运行的时

c#控制台程序运行时隐藏窗体方法

一.最简单的办法: 在VS里选中项目点击右键,打开"属性",把"输出类型"改成"Windows应用程序".保存后运行发现黑色窗体不见了! 二.用代码设置: <span style="font-family:Microsoft YaHei;font-size:14px;"> #region 隐藏窗口 [DllImport("user32.dll", EntryPoint = "ShowW

隐藏CMD窗口,使程序在后台执行

@echo off if "%1"=="h" goto begin start mshta vbscript:createobject("wscript.shell").run("""%~nx0"" h",0)(window.close)&&exit :begin 代码放在此处即可 参考链接: https://jingyan.baidu.com/article/cb5d6

批处理文件 bat 后台运行

当运行 批处理文件bat 时 , 会有一个黑窗口显示 , 对于不懂的人来说, 还是很吓人的;  有两种办法,可以让bat后台运行,不出现黑窗口 第一种解决办法(推荐) : 在你写的批处理文件,开头加上以下三行代码即可 if "%1"=="hide" goto CmdBegin start mshta vbscript:createobject("wscript.shell").run("""%~0"&quo

Windows 如何为绿色软件运行时添加参数 如最小化,无窗口运行

1 有些软件运行的时候需要或者可以添加参数来实现一些特殊要求,比如开机自启动,运行时不显示主界面,不显示托盘图标等,比如下面的这个流量精灵软件,"urlcore.exe /h /r /t 4956102,4956110,4956111"表示运行urlcore.exe这个程序,同时/h /r /t分别含义如下,最后的三个数字表示要刷的网址编号. [/h] 运行时隐藏界面(hide) [/r] 设置开机自动运行(autorun) [/t] 设置运行时不显示托盘图标(trayicon) ?

window的cmd窗口运行git

般情况下,我们在 Window 下安装好 git 后,在运行里面打开 cmd 窗口,在里面直接运行 git --version ,会提示“不是内部或外部命令,也不是一个可运行的程序”. 要想在cmd窗口运行git,只需要在“变量环境”添加 git 的 bin 目录地址和 git-core 目录地址就可以了,如: 1.计算机右键选择属性 2.点击高级系统设置 -> 环境变量 -> Path 3.然后在 Path 弹窗填写你的bin路径(D:\Program Files\Git\bin;)和路径g

求助(VC++) 隐藏Console窗口无效

[逝去的100~~ 2014/10/07 20: 20] 程序想要实现控制台窗口的隐藏,但是窗口每次运行总会弹出来.为什么呢? 代码如下: // Mini.cpp : 定义控制台应用程序的入口点. #include "stdafx.h" #pragma comment(lib,"ws2_32.lib") #include <winsock2.h> #include <windows.h> //#pragma comment(linker, &

java 执行bat批处理文件 并关闭cmd窗口

import java.io.IOException; public class CmdMain { public static void main(String[] args){ //执行批处理文件 String strcmd="cmd /c start D:\\antrelease.bat"; Runtime rt = Runtime.getRuntime(); Process ps = null; try { ps = rt.exec(strcmd); } catch (IOEx