From 54216a6ddb8db58fee5a760ec66f827d284cd176 Mon Sep 17 00:00:00 2001 From: johndah4x0r Date: Wed, 26 Jul 2017 13:27:18 +0200 Subject: [PATCH] Delete bootinst.bat --- bootfiles/bootinst.bat | 47 ------------------------------------------ 1 file changed, 47 deletions(-) delete mode 100755 bootfiles/bootinst.bat diff --git a/bootfiles/bootinst.bat b/bootfiles/bootinst.bat deleted file mode 100755 index eb19345..0000000 --- a/bootfiles/bootinst.bat +++ /dev/null @@ -1,47 +0,0 @@ -@echo off -cls -echo =============================================================================== -echo Setting your drive to boot -echo =============================================================================== -echo. - -set DISK=none -set BOOTFLAG=boot666s.tmp - -echo This file is used to determine current drive letter. It should be deleted. >\%BOOTFLAG% -if not exist \%BOOTFLAG% goto readOnly - -echo wait please ... -for %%d in ( C D E F G H I J K L M N O P Q R S T U V W X Y Z ) do if exist %%d:\%BOOTFLAG% set DISK=%%d -del \%BOOTFLAG% -if %DISK% == none goto DiskNotFound - -echo. -echo Setting up boot record for %DISK%:, wait please... - -if %OS% == Windows_NT goto setupNT -goto setup95 - -:setupNT -\boot\syslinux.exe -maf -d /boot/ %DISK%: -goto setupDone - -:setup95 -\boot\syslinux.com -maf -d /boot/ %DISK%: - -:setupDone -echo Installation finished. -goto pauseit - -:readOnly -echo You're starting boot installer from a read-only media, this will not work. -goto pauseit - -:DiskNotFound -echo Error: can't find out current drive letter - -:pauseit -echo Press any key to exit... -pause > nul - -:end