::By est,electronicstar@126.com
@echo off
if "%1" == "" goto no
echo Starting %1 with SYSTEM privilege...
set t=%time%
echo %t% >nul
time 00:00
at 00:01 /interactive %1 > nul
time 00:01
::delay for 1 second
ping -n 1 -w 1 127.1 >nul
time %t%
goto end
:no
echo.
echo Run a program with SYSTEM privilege
echo.
echo Usage: sysrun exeFileFullPath
echo.
echo Made by est,electronicstar@126.com
:end
echo Done.