跳转至

bat脚本开机启动,后台运行

1. 在脚本代码的开头添加下面这段代码

@echo off
if "%1" == "h" goto begin
mshta vbscript:createobject("wscript.shell").run("%~nx0 h",0)(window.close)&&exit
:begin

2. 使用 vb 脚本

批处理文件:test.bat,再创建一个 txt 文件 , 比如叫 backrun.txt 再该文件中写入以下代码

createobject("wscript.shell").run "test.bat",0

bat 开机启动

把 bat 文件放到C:\Users\Administrator\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup目录下即可,放置快捷方式也行

此时再把该 txt 文件的后缀名改为.vbs

双击该 vbs 文件, 批处理文件就已经进入后台运行模式了;

评论