Dec 132017
 
Simple utility that will reboot your computer. C source included.
File PLBBOOT.ZIP from The Programmer’s Corner in
Category Utilities for DOS and Windows Machines
Simple utility that will reboot your computer. C source included.
File Name File Size Zip Size Zip Type
COMMIT.DOC 692 387 deflated
READ.ME 2219 888 deflated
REBOOT.C 601 264 deflated
REBOOT.EXE 6704 4277 deflated

Download File PLBBOOT.ZIP Here

Contents of the READ.ME file


Name: reboot

Synopsis:
reboot [-c]

Description:

Reboot does just what the name implies and forces a reboot of
the system. The "-c" option causes a "cold" reboot and no option or an
illegal option triggers the default "warm" reboot.

Why reboot the system under programmatic control? Suppose you
have a batch file that has to reconfigure the CONFIG.SYS or
AUTOEXEC.BAT? You could do this and through this program reboot the
system to make your new environment take effect. What follows is an
example use of this feature.


_________________________________

****************** Autoexec.1 *************************

@echo off
REM This is the normal autoexec file that is used under normal
REM circumstances.
cls

path=c:\bin;c:\etc\dos;c:\usr\bin

REM Invoke our menu program
menu

**************** Autoexec.2 ******************************

@echo off
REM This autoexec is used while the CAD program is in use
cls
cd \usr\lib\cadd
cadd
cd \etc\system
rst_sys

****************** config.1 *********************************

FILES=20
BUFFERS=20
device=c:\dev\mouse.sys
shell=command.com /e:512/p

******************* config.2 ********************************
FILES=2
BUFFERS=2
device=c:\dev\mouse.com

****************** rst_sys.bat *****************************
@echo off
copy config.1 \config.sys
copy autoexec.1 \autoexec.bat
\bin\reboot

******************* startcadd.bat **************************

@echo off
copy \etc\system\config.2 \config.sys
copy \etc\system\autoexec.2 \autoexec.bat
\bin\reboot

________________________________

As you can see by the above example, the CAD program has a memory
requirement that only allows for an environment with 2 files and 2
buffers allowed. To invoke the CAD program, the config.sys and
autoexec.bat files are "recreated" by copying the appropriate one from a
special subdirectory to the root directory. Then the system is
rebooted. The new CONFIG.SYS and AUTOEXEC.BAT take hold and the CAD
program is invoked. When the application is exited, the original
CONFIG.SYS and AUTOEXEC.BAT are "restored" and the system is then again
rebooted.





 December 13, 2017  Add comments

 Leave a Reply

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong>

(required)

(required)