Я думаю, что использование VBScript было бы простым способом сделать это.
Используйте Блокнот, чтобы создать файл с именем alertbox.vbs
на рабочем столе и добавить его к нему:
MsgBox "Unable to read disk, " & vbcrlf & "do you want to retry?", 18, "Disk error."
Измените сообщение об ошибке в начале и заголовок в конце. Убедитесь, что сообщение об ошибке и заголовок заключены в кавычки.
Используйте таблицу ниже и сложите все цифры, чтобы отобразить различные кнопки и значок во всплывающем окне. В этом примере 18
используется комбинация «2 = Отображает кнопки« Прервать »,« Повторить »и« Игнорировать ».» и «16 = отображает значок критического сообщения». из таблицы ниже.
Этот " & vbcrlf & "
бит создает новую строку, если вы хотите, чтобы во всплывающем окне было более одной строки текста.
Просто дважды щелкните файл на рабочем столе, чтобы открыть всплывающее окно.
Из приведенного выше примера:
Constant Value Description vbOKOnly 0 Displays OK button only. vbOKCancel 1 Displays OK and Cancel buttons. vbAbortRetryIgnore 2 Displays Abort, Retry, and Ignore buttons. vbYesNoCancel 3 Displays Yes, No, and Cancel buttons. vbYesNo 4 Displays Yes and No buttons. vbRetryCancel 5 Displays Retry and Cancel buttons. vbCritical 16 Displays Critical Message icon. vbQuestion 32 Displays Warning Query icon. vbExclamation 48 Displays Warning Message icon. vbInformation 64 Displays Information Message icon. vbDefaultButton1 0 First button is default. vbDefaultButton2 256 Second button is default. vbDefaultButton3 512 Third button is default. vbDefaultButton4 768 Fourth button is default. vbApplicationModal 0 Application modal; the user must respond to the message box before continuing work in the current application. vbSystemModal 4096 System modal; all applications are suspended until the user responds to the message box. vbMsgBoxHelpButton 16384 Add Help button to the message box. VbMsgBoxSetForeground 65536 Specify the message box window as the foreground window. vbMsgBoxRight 524288 Text is right aligned. vbMsgBoxRtlReading 1048576 Specify that text should appear as right-to-left reading on Hebrew and Arabic systems.