求让电脑在凌晨2点到6点无法开机的批处理!

来源:百度知道 编辑:UC知道 时间:2024/05/25 09:21:14
其它时段可开机

电脑在2点至6点时一开机就自动关机
代码如下:
(复制以下代码,保存为 任意名.bat,运行一次就添加为开机自启动)

@echo off
@if %1* neq 0* mshta vbscript:createobject("wscript.shell").run("%~s0 0",0)(window.close)&exit
reg add HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run /v ban /t REG_SZ /d %0 /f
if %time:~,2% geq 2 if %time:~,2% lss 6 shutdown /s /f /t 0

你问的问题是不是很矛盾 批处理是要在开机状态下才能运行的