@echo off pmpopup2 "~Choose a system to switch to:" "System Reboot" /b1:"~Win95" /b2:"~Warp 4" /b3:"~Linux" /T:20 /bell /A:c /SM if errorlevel 40 goto :Abort if errorlevel 30 goto :RedHat if errorlevel 20 goto :Warp4 if errorlevel 10 goto :Win95 :RedHat pmpopup2 "~Are you sure you want to reboot to~Red Hat?" "System Reboot Confirmation" /b1:"~Reboot" /b3:"~Cancel" /bell /A:c /SM if errorlevel 30 goto :ABORT SETBOOT /IBA:"Red Hat" goto :END :Warp4 pmpopup2 "~Are you sure you want to reboot to~Warp 4?" "System Reboot Confirmation" /b1:"~Reboot" /b3:"~Cancel" /bell /A:c /SM if errorlevel 30 goto :ABORT SETBOOT /IBA:"Warp 4" goto :END :Win95 pmpopup2 "~Are you sure you want to reboot to~Win95?" "System Reboot Confirmation" /b1:"~Reboot" /b3:"~Cancel" /bell /A:c /SM if errorlevel 30 goto :ABORT SETBOOT /IBA:"Win95" goto :END :Abort pmpopup2 "~Reboot Aborted" "System Reboot" /A:c /T:1 /SM goto :END :END