@ECHO OFF
TITLE GUI - RunOnce // User Account Settings
PUSHD "%~dp0"
PUSHD "Settings\"

ECHO                                       \./
ECHO                                      (o o)
ECHO ---------------------------------oOOo-(_)-oOOo---------------------------------
ECHO Implementing User Account Settings.
ECHO ===============================================================================
ping -n 3 localhost 1> NUL


for /f "usebackq delims=|" %%f in (`dir /B "*.cmd" 2^> NUL`) do (CALL "%%f")


ECHO.
ECHO -------------------------------------------------------------------------------
ECHO.
ECHO Logging Off from the computer for the new settings to take effect...
ECHO.
ECHO --------Finished----------Finished----------Finished----------Finished--------
ping -n 5 localhost 1> NUL
SHUTDOWN -l
EXIT
