BAT批处理后台运行的命令是啥?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了BAT批处理后台运行的命令是啥?相关的知识,希望对你有一定的参考价值。
BAT批处理后台运行的命令是什么? 格式是什么样式的?给我一个例子!
两种方法供参考:方法一:
1、在“运行”中输入IEXPRESS(这是WINDOWS自带的打包程序 )
2、点击【下一步】→【下一步】→【随便填个名字(下一步) 】→ 【下一步 】→ 【下一步】 → 【ADD(选好你的BAT文件 继续下一步)】→【 Install里面选你刚加进去的文件(下一步)】→ 【hidden(下一步)】→ 【下一步】 → 【保存打包好的文件(勾一下hidden下一步)】 → 【下一步】 → 【don‘t save】→【下一步】 → 【下一步】 → 完成。
以后运行打好包的EXE文件就可以在后台运行。
方法2:
可以编辑一个vbs脚本,在其中以隐藏窗口运行批处理程序。
------------------------------------------------------------
Set ws = CreateObject("Wscript.Shell")
ws.run "cmd /c 批处理程序名",vbhide
------------------------------------------------------------
将水平线中代码拷贝到记事本中,保存为"runbat.vbs"或者其它的名字(扩展名必须是.vbs),然后点击运行生成的脚本runbat.vbs,即可隐藏运行指定的批处理程序。这个vbs脚本也可以在其它环境中直接调用。 参考技术A 给你举例清除系统垃圾的批处理文件内容。批处理文件扩展名为bat,批处理文件只要双击运行即可
举例详细内容如下:
@echo off
echo 正在清除系统垃圾文件,请稍等......
del /f /s /q %systemdrive%\*.tmp
del /f /s /q %systemdrive%\*._mp
del /f /s /q %systemdrive%\*.log
del /f /s /q %systemdrive%\*.gid
del /f /s /q %systemdrive%\*.chk
del /f /s /q %systemdrive%\*.old
del /f /s /q %systemdrive%\recycled\*.*
del /f /s /q %windir%\*.bak
del /f /s /q %windir%\prefetch\*.*
rd /s /q %windir%\temp & md %windir%\temp
del /f /q %userprofile%\cookies\*.*
del /f /q %userprofile%\recent\*.*
del /f /s /q "%userprofile%\Local Settings\Temporary Internet Files\*.*"
del /f /s /q "%userprofile%\Local Settings\Temp\*.*"
del /f /s /q "%userprofile%\recent\*.*"
echo 清除系统LJ完成!
echo. & pause
最后另存为扩展名为bat 然后直接双击运行即可 参考技术B 你好,可以用VBS命令来实现
新建一个TXT文件,然后输入以下命令,保存为*.vbs(*可以为任意名称)后可以添加到开机启动程序里
如:
createobject("wscript.shell").run "C:\1.bat",0
C:\1.bat为你的盘符和BAT文件 参考技术C @echo off
echo 正在清除系统垃圾文件,请稍等......
del /f /s /q %systemdrive%\\*.tmp
del /f /s /q %systemdrive%\\*._mp
del /f /s /q %systemdrive%\\*.log
del /f /s /q %systemdrive%\\*.gid
del /f /s /q %systemdrive%\\*.chk
del /f /s /q %systemdrive%\\*.old
del /f /s /q %systemdrive%\\recycled\\*.*
del /f /s /q %windir%\\*.bak
del /f /s /q %windir%\\prefetch\\*.*
rd /s /q %windir%\\temp & md %windir%\\temp
del /f /q %userprofile%\\cookies\\*.*
del /f /q %userprofile%\\recent\\*.*
del /f /s /q "%userprofile%\\Local Settings\\Temporary Internet Files\\*.*"
del /f /s /q "%userprofile%\\Local Settings\\Temp\\*.*"
del /f /s /q "%userprofile%\\recent\\*.*"
echo 清除系统垃圾完成!
echo. & pause
以上是关于BAT批处理后台运行的命令是啥?的主要内容,如果未能解决你的问题,请参考以下文章