@echo off
cls
ECHO *****************************************************************************
ECHO **              Select Font Size (Screen will be set to 1024)              **
ECHO *****************************************************************************
echo.
echo.
echo      IMPORTANT: The PC will need to reboot (Exit if files not saved etc)
echo.
echo.
echo			[1]	Tiny
echo.
echo			[2]	Normal
echo.
echo			[3]	Large
echo.
echo			[4]	Extra Large
echo.
echo			[5]	Exit
echo.
echo.
echo.
%logonserver%\netlogon\CopyToAll\MrC\choice.com /C:12345
if errorlevel=5 goto exit
if errorlevel=4 goto extralarge
if errorlevel=3 goto large
if errorlevel=2 goto normal
if errorlevel=1 goto tiny

:tiny
regedit /s c:\MrC\Registry\SetTinyFont.reg
goto reboot

:normal
regedit /s c:\MrC\Registry\NormalFonts.reg
goto reboot

:large
regedit /s c:\MrC\Registry\LargeFonts.reg
goto reboot

:extralarge
regedit /s c:\MrC\Registry\ExtraLargeFonts.reg
goto reboot

:exit
exit

:reboot
C:\Mrc\MultiRes.exe /1280,1024,32 /exit
cls
echo The PC now needs to be rebooted...
c:\MrC\shutdown.exe /t 10 /l /r /y /c
