Computer Hope

Microsoft => Microsoft DOS => Topic started by: Jhuniebee on July 25, 2004, 06:49:36 PM

Title: Batch File - Ctrl+Break/Ctrl+C
Post by: Jhuniebee on July 25, 2004, 06:49:36 PM
I would like to ask, if there's a way to disable Ctrl+Break or Ctrl+C while running autoexec.bat?
Thanks for your help.  
Title: Re: Batch File - Ctrl+Break/Ctrl+C
Post by: PCgeek8080 on July 26, 2004, 12:35:13 PM
what does that do?
Title: Re: Batch File - Ctrl+Break/Ctrl+C
Post by: MalikTous on July 26, 2004, 08:36:33 PM
Break scanning allows interrupting a batch file with hex 03 (Ctrl C or Ctrl Pause).

break=off in the batch file is supposed to disable the scanning for hex 03. break=on reactivates it.