1

В CMD я мог бы сделать Set /P ASK=REPEAT и он будет запрашивать у пользователя ASK . Как мне сделать это в пакетных файлах MSDOS? (Нет, не те, которые работают на NT, но те, которые работают на MSDOS.)

Кстати: «Set /P» является ответом NT, поэтому он не работает.

:(

3 ответа3

2

Это более старый способ ввода со старой версией DOS. У меня нет более старой версии DOS, поэтому мне сложно ее протестировать, однако я дам вам код и страницу, на которой показаны различные способы ввода данных для более старых версий DOS. Вот код

ECHO Enter some input, and press Enter when ready . . .
ECHO ?[13;0;64;13p
COPY CON USRINPUT.TMP
ECHO ?[13;13p
CLS
ECHO You typed:
TYPE USRINPUT.TMP

Проверьте этот сайт для большего количества примеров.

Пакетные файлы - запросить ввод пользователя

1

Как насчет одного из них. , ,

Ресурс: http://www.msfn.org/board/topic/174005-prompt-for-variable-in-dos-71/

Пример test.bas можно использовать:C:\DOS71\QBASIC /run test.bas

REM Get the users input.
INPUT "Enter the system Serial Number"; reply$

REM Show the value of the reply.
PRINT reply$

REM Return to the system.
SYSTEM

ИЛИ ЖЕ

editvar -p "Enter the system Serial Number." INPUT
rem temp.exe /ss %INPUT%
md %INPUT%

ОБНОВИТЬ

Онлайн эмулятор: https://archive.org/details/msdos_qbasic_megapack

Ресурс: https://support.microsoft.com/en-us/kb/81360

Editor is a full screen text editor. QBasic is a program that reads instructions written in Basic and interprets them into executable computer code. 

The EDIT command starts Editor from the command prompt. QBASIC starts the QBasic Interpreter from the command prompt. Both Editor and QBasic may be executed with a switch or combination of switches to enhance or modify their performance. The following is a description of the switches available and how they affect Editor and QBasic:
    Switch   Description
   ------   -----------

   /B       Displays Editor or QBasic in black and white. This switch
            should be used to run Editor or QBasic on a monochrome
            monitor with a color graphics card. If the Editor or
            QBasic pull-down menus do not show the short cut keys on a
            CGA monitor, then use the /B switch when starting Editor
            or QBasic.

   /G       Use this switch with a CGA monitor to provide the fastest
            screen updating.

   /H       Use this switch to display the maximum number of lines on
            the screen that the monitor supports.

   /NOHI    Editor and QBasic are designed for 16 color monitors, but
            this switch allows Editor or QBasic to function on an
            eight color monitor. If Editor or QBasic pull-down menus
            do not show the short cut keys on a system that does not
            support bold characters, use the /NOHI switch when
            starting Editor or QBasic.

The following switches may be used only with QBasic:
   Switch     Description
   ------     -----------

   /EDITOR    Invokes Editor.

   /MBF       Converts the built-in functions MKS$,MKD$,CVS$, and CVD
              to MKSMBF$, MKDMBF$, CVSMBF, and CVDMBF, respectively.

   /RUN       Runs a specified Basic program before displaying it.

To start Editor with the /NOHI switch, type the following command at the command prompt:
edit /nohi
To start QBasic and run the program MYPROG.BAS, type the following at the command prompt:
qbasic /run myprog.bas
Reference(s): 

"MS-DOS User's Guide and Reference," versions 5.0 and 5.0a, pages 459, 547
1

CHOICE - это команда, которая существует в MSDOS 6.22, и я полагаю, что и в 7.1, хотя точный синтаксис может отличаться. Пример:

CHOICE /C:YN /T:N,10 Do you want to continue
IF ERRORLEVEL 2 GOTO :eof
ECHO You chose Y, continuing
:eof

Параметр /C позволяет указать разрешенные параметры / Параметр T позволяет указать параметр по умолчанию и время ожидания

Попробуйте CHOICE /? чтобы получить детали для вашей версии DOS.

Всё ещё ищете ответ? Посмотрите другие вопросы с метками .