Skip to content
View in the app

A better way to browse. Learn more.

MSFN

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Autoboot Recovery Cd

Featured Replies

so xp is installed with the unattended cd. super cool.

but now I want to do a recovery cd with ghost, it should be a bootable self executing cd like those from the like of compag, hp etc.

ghost 7 allows me to create a bootable cd with the ghost image and ghost itself but you are still expected to operate ghost: what kind of batch should I use there to prompt the user for confirmation before dumping the image and then execute ghost?

-basically I don't know how to write a script, you see- :rolleyes:

I found an example somewhere but it assumed some version of freedos that I don't know so some file is missing and the script stops because the instruction "get" is not recognised.

how could I do it with MSDOS? or with anything else?

Can anyone point me to a tutorial or a guide?

I have found Bart's page (nu2u) but ...er.. it still seems a bit above my reach :)

any help is much much appreciated.

you can use the -clone switch with ghost and it will ask you if you want to proceed. if you add -sure with it it will not.

i.e.

ghost -clone,mode=load,src=g:\diskimg.gho,dst=1

will load the diskimg.gho to the first disk in the machine and ask if you want to proceed.

ghost -clone,mode=load,src=g:\diskimg.gho,dst=1 -sure

will do the same without the prompt to continue.

you can also add -rb to automatically reboot after the image is loaded.

If you want more prompts before ghost loads use the CHOICE dos batch command.

@ECHO OFF

ECHO 1 - Exit to Dos Prompt

ECHO 2 - Run System Restore

CHOICE /C:12 /t:1,30 "Make your selection:"

IF errorlevel 2 goto restore

IF errorlevel 1 goto dos

:restore

ECHO.

ECHO  Running System Restore

ECHO.

CHOICE "ARE YOU SURE? "

IF ERRORLEVEL 2 GOTO dos

IF errorlevel 1 goto dorestore

PAUSE

CLS

EXIT

:dos

ECHO.

ECHO Exiting to DOS

EXIT

exit

:dorestore

ghost -clone,mode=load,src=g:\diskimg.gho,dst=1

exit

  • Author

WOW! CHOICE!

how easy things seem once someone comes and solves the problem for you!

Thanks a lot.

assuming the problem is solved, still, is there a way to get input from the user without just choosing from a list? say, 'if you want to proceed, type "sure, don't worry, I know what I am doing, and I am not going to regret it as soon as it's 5 seconds too late to do anything about it"

but anyway, CHOICE is perfect for what I needed, thank you. :)

Not without finding someones or creating a third party utility of some sort.

At least not that I know of.

Create an account or sign in to comment

Recently Browsing 0

  • No registered users viewing this page.

Account

Navigation

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.