Expertos en Batcomputer, por favor entren, quiero reiniciar automáticamente a una hora programada.
echo.@echo apagado>%systemdrive%\restart.bat
echo.at 7:00 apagado -r >>%systemdrive%\restart.
reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run" /f /v "restartat7:00am" /t REG_SZ /d "%systemdrive%\restart.bat" & gt;nul
salir
Explicación,
echo.@echo off>%systemdrive%\restart.bat
echo.at 7:00 apagado -r > >%systemdrive%\restart.bat
Este programa creará un archivo bat en el disco del sistema y se reiniciará a las 7:00.
reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run" /f /v " restartat7:00am" /t REG_SZ /d "%systemdrive%\restart.bat" >nul
Esto es para agregar el archivo bat creado a los elementos de inicio. De esta manera, cada vez que enciendas tu computadora, se ejecutará automáticamente sin tener que iniciar la computadora.
Aunque no puedas leerlo, no importa, hará lo que quieras. hacer. .....