|
Computers We do the whole job so you get better support and setup. 717-7917 No Proprietary Parts. Local Support Direct to the Tech. |
Why DCI | Support | Prices | Contact Us | Links |
Sample BAT files to Automate
Norton Ghost:
as we frequently backup customers full
software setups we find these
routines help automate the process and save time and cut down on errors.
BCCD.bat
@Echo OFF
REM BCCD=Backup Copy/CLONE Drive C to D
Echo Backing up (Cloning) Drive C to Drive D:
rem IF NOT EXIST D:\NUL GOTO ERR1
Echo *** WARNING THIS WILL ERASE Everything on Drive D:! ***
choice /N Are You SURE You Want to Continue [Yn] ?
IF Errorlevel 2 GOTO ErrA
Echo .
Echo Write Down this Lisc# D670DB9F9B2C you will MAY need it soon!
rem Echo I will try to auto Send it
rem for CD try Next Line
rem Advanced user stuff and requires the Stackey utility that inserts keystrokes
automatically!
Rem Remarked out here as you probably dont have it and it needs to be set for
media speed
rem Stackey W144 "D670DB9F9B2C"CR
rem For Floppy next line
rem Stackey W255W255W70 "D670DB9F9B2C" CR
ghostpe -clone,mode=copy,src=1,dst=2 -Fro
GOTO END
:ERR1
Echo ERROR! ... Drive D: Not Found ... Backup Aborted
GOTO END
:ERRA
Echo Routine Aborted by User.
GOTO END
:END
Note: The drive you are writing Image Files to can not be NTFS as
it won't be seen when you boot to a DOS Diskette and I am using drive letters to
refer to the drives, but if the drive being images is NTFS than although it will
be seen and can be imaged by Ghost you will not see it from DOS and it won't
have a drive letter - in fact the second drive will be reported as C, but
isreagrd all that as the actual imaging steps below refer to the drive number
not letter. Do not use pdump (Partition dumps when dealing with Window
NT/XP at least not if dealing with the system volume). If the drive you
are trying to clone or image has bad spots and you can not get through the
routine try adding the switch -FRO to the ghostpe command line you also might
want to try the switch -BFC
BCDC.bat
@Echo OFF
REM BCDC=Backup Copy - CLONE Drive D to C
Echo Backing up (Cloning) Drive D to Drive C:
rem IF NOT EXIST D:\NUL GOTO ERR1
Echo *** WARNING THIS WILL ERASE Everything on Drive C:! ***
choice /N Are You SURE You Want to Continue [Yn] ?
IF Errorlevel 2 GOTO ErrA
Echo .
Echo Write Down this Lisc# D670DB9F9B2C you may need it soon!
Echo I will try Sending it for you
rem for CD try Next Line
rem Advanced user stuff and requires the Stackey utility that inserts keystrokes
automatically!
rem Stackey W144 "D670DB9F9B2C"CR
rem For Floppy next line
rem Stackey W255W255W70 "D670DB9F9B2C" CR
ghostpe -clone,mode=copy,src=2,dst=1 -fro
GOTO END
:ERR1
Echo ERROR! ... Drive D: Not Found ... Backup Aborted
GOTO END
:ERRA
Echo Routine Aborted by User.
GOTO END
:END
BICD.bat
@Echo OFF
REM BICD=Backup Image C to D
Echo .
Echo Backing Up Drive 1: to Image Files on Drive 2:
IF NOT EXIST D:\NUL GOTO TryC
IF NOT Exist D:\Backups\NUL MD D:\Backups
IF NOT Exist D:\Backups\Ghost\NUL MD D:\Backups\Ghost
IF NOT Exist D:\Backups\Ghost\1\NUL MD D:\Backups\Ghost\1
GOTO CONTBCD
:TryC
IF NOT EXIST C:\NUL GOTO Err1
IF NOT Exist C:\Backups\NUL MD C:\Backups
IF NOT Exist C:\Backups\Ghost\NUL MD C:\Backups\Ghost
IF NOT Exist C:\Backups\Ghost\1\NUL MD C:\Backups\Ghost\1
GOTO CONTBCD
:CONTBCD
REM dst DEPENDS if C is NTFS than drive2=C BUT if C FAT then Drive2=D
rem IF C NTFS & D exists then put c below
Rem A Messy Method that should work if only 2 hard disks are connected
IF NOT Exist D:\Nul GOTO NTFS
REM SO BOTH Drives FAT32
If %1.==. GoTo NoName1
IF Exist D:\Backups\Ghost\%1\Nul GoTo Err2
IF Not Exist D:\Backups\Ghost\%1\Nul MD
D:\Backups\Ghost\%1
ghostpe -clone,mode=dump,src=1,dst=d:\Backups\Ghost\%1\C -split=640 -auto -z1 -fx
-fro
GoTo Fin
:NoName1
IF Exist C:\Backups\Ghost\1\C*.* GoTo ErrorIDC
ghostpe -clone,mode=dump,src=1,dst=d:\Backups\Ghost\1\C -split=640 -auto -z1 -fx
-fro
GoTo Fin
:NTFS
REM SO 1st Drive is NTFS so call dst c as DOS dont see/assign a letter to NTFS
drive
If %1.==. GoTo NoName2
IF Exist C:\Backups\Ghost\%1\Nul GoTo Err2
IF Not Exist C:\Backups\Ghost\%1\Nul MD
C:\Backups\Ghost\%1
ghostpe -clone,mode=dump,src=1,dst=c:\Backups\Ghost\%1\C -split=640 -auto -z1 -fx
-fro
GoTo Fin
:NoName2
IF Exist C:\Backups\Ghost\1\C*.* GoTo ErrorIDC
ghostpe -clone,mode=dump,src=1,dst=c:\Backups\Ghost\1\C -split=640 -auto -z1 -fx
-fro
GoTo Fin
:Fin
GOTO CONTBCD2
choice /N Check Image File [Yn] ?
IF Errorlevel 2 GOTO CONTBCD2
IF NOT EXIST D:\Backups\Ghost\1\C*.* GOTO CONTBCD2
Echo Testing Image File
ghostpe -chkimg,d:\Backups\Ghost\1\C -auto
rem Pause
:CONTBCD2
IF %1.==. GoTo NoName3
Echo Backup of Drive C: in D:\Backups\Ghost\%1
GoTo Named3
:NoName3
Echo Backup of Drive C: in D:\Backups\Ghost\1
:Named3
Echo Should You NEED to Restore it to C: you Must
Echo Boot to a Floppy and run D:\Util\Ghost\RIDC.bat
Echo OR if That Don't Work Try A:\RIDC
Echo BUT Check for hardware problems like cooling or viruses
Echo 1st as you may not have a software problem and restoring
Echo a prior software setup is Risk and fruitless if you have
Echo a hardware problem so play it safe check with Dave at DCI 1st.
Echo .
Pause
GOTO END
:ERR1
Echo ERROR! ... Neither a Drive C or D: was found ... Backup Aborted
GOTO END
:ERR2
Echo ERROR! ... Folder %1 Already Exists!
Echo Move or Delete it First... Backup Aborted!
GOTO END
:ERRIDC
Echo ERROR: A Ghost Backup already Exists in D:\Backups\Ghost\1
Echo You Must Move That Backup out of the way first! Backup Aborted!
GOTO END
:END
BIDC.bat
@Echo OFF
REM BIDC=Backup Image Drive D: to C:
Rem Prob Best Method to Use as Work with NTFS or FAT without having to do
special weird tests!
Echo .
Echo Backing Up Drive D/Drive 2: as Image Files on Drive C/Drive 1:
IF NOT EXIST C:\NUL GOTO ERR1
IF NOT EXIST C:\Backups\NUL MD C:\Backups
IF NOT EXIST C:\Backups\Ghost\NUL MD C:\Backups\Ghost
IF NOT EXIST C:\Backups\Ghost\1\NUL MD C:\Backups\Ghost\1
IF %1.==. GoTo NoName1
IF NOT EXIST C:\Backups\Ghost\%1\NUL MD C:\Backups\Ghost\%1
IF Exist C:\Backups\Ghost\%1\Nul GoTo Err2
IF Not Exist C:\Backups\Ghost\%1\Nul MD
C:\Backups\Ghost\%1
ghostpe -clone,mode=dump,src=2,dst=C:\Backups\Ghost\%1\C -split=640 -auto -z1 -fx
-fro
GOTO CONTBDC2
:NoName1
IF Exist C:\Backups\Ghost\1\C*.* GoTo ErrorIDC
ghostpe -clone,mode=dump,src=2,dst=C:\Backups\Ghost\1\C -split=640 -auto -z1 -fx
-fro
GOTO CONTBDC2
IF NOT EXIST C:\Backups\Ghost\1\C*.* GOTO CONTBDC2
choice /N Check Image File [Yn] ?
IF Errorlevel 2 GOTO CONTBDC2
Echo Testing Image File
ghostpe -chkimg,c:\Backups\Ghost\1\C -auto
:CONTBDC2
CLS
IF %1.==. GoTo NoName2
Echo Backup of Drive D: in C:\Backups\Ghost\%1
GoTo Named2
:NoName2
Echo Backup of Drive D: in C:\Backups\Ghost\1
:Named2
Echo Should You NEED to Restore it you Must
Echo Boot to a Floppy and run D:\Util\Ghost\RICD.bat
Echo BUT Check for hardware problems like cooling or viruses
Echo 1st as you may not have a software problem and restoring
Echo a prior software setup is Risk and fruitless if you have
Echo a hardware problem so play it safe check with Dave at DCI 1st.
Echo .
Pause
GOTO END
:ERRIDC
Echo ERROR: A Ghost Backup already Exists in C:\Backups\Ghost\1
Echo You Must Move That Backup out of the way first! Backup Aborted!
GOTO END
:ERR1
Echo ERROR! ... FAT Drive C: Not Found ... Backup Aborted
GOTO END
:ERR2
Echo ERROR! ... Folder %1 Already Exists!
Echo Move or Delete it First... Backup Aborted!
GOTO END
:END
BICR.bat
@Echo OFF
REM BICR=Backup Image of Drive C: to CD-R Disks
CLS
Echo Backing up All Files on Drive C: to CD-R Disks
Echo You Will Need atleast Several Blank CD-R Disks Ready!
Echo .
Echo Leave this Boot Disk in Drive A:
Echo It will be used to make the CD-R Bootable
Echo .
Echo Insert the First Blank CD-R disk in CD RW Drive NOW
Echo
choice /N Are You Ready to Continue [Yn] ?
IF Errorlevel 2 GOTO ErrA
rem Echo .
rem Echo You will be Asked to Insert a Boot Disk to Put on the CD
rem Echo Use the Disk Labeled "CDRW BootDisk for Ghost Image on CD-R Disks"
rem Echo Now Starting the Routine ... Imaging Drive C to CD-R Disks
rem Pause
GHOSTPE.EXE -clone,MODE=dump,SRC=1,DST=@CD1 -auto -split=690 -z1 -bootcd
REM ADD -fx to auto Exit Ghost & -Sure if want no Prompts
Echo Backup to CD-R Disks Finished.
Echo If this Process Completed Without Errors Then
Echo Remove the Last CD and Label Them with Date and Sequence#
Echo and Keep them in a Safe Cool Place where they won't get scratched
GOTO END
:ERRA
Echo Routine Aborted by User.
GOTO END
:END
BIDR.bat
@Echo OFF
REM BIDR=Backup Image of Drive D: to CD-R Disks in R:
CLS
Echo Backing up All Files on Drive D: to CD-R Disks
Echo You Will Need atleast Several Blank CD-R Disks Ready!
Echo .
Echo Leave this Boot Disk in Drive A:
Echo It will be used to make the CD-R Bootable
Echo .
Echo Insert the First Blank CD-R disk in CD RW Drive NOW
rem Echo Proper Boot Disk In Drive A: Then
choice /N Are You Ready to Continue [Yn] ?
IF Errorlevel 2 GOTO ErrA
GHOSTPE.EXE -clone,MODE=dump,SRC=2,DST=@CD1 -auto -split=690 -z1 -bootcd
Echo Backup to CD-R Disks Finished.
Echo If this Process Completed Without Errors Then
Echo Remove the Last CD and Label Them with Date and Sequence#
Echo and Keep them in a Safe Cool Place where they won't get scratched
GOTO END
:ERRA
Echo Routine Aborted by User.
GOTO END
:END
BICU.bat
@Echo OFF
REM BICU=Backup Image of C to Remote C over USB www.lpt.com
Echo Backing Up Drive C: to Image Files on Remote C: via USB
Echo .
Echo So Remote Computer MUST ALSO be Booted from this Ghost Disk
Echo and Running in USB Slave Mode Waiting for a Connection!
Echo .
Echo After Backup move *.GHO Files from Root of Remote C:
Echo to a Proper place for Safe Keeping
Echo .
Echo Starting Ghost Program when you
Pause
REM Copy Local Drive C to Remote Drive over USB Cable splitting Files into 640Mg
Segments AutoName High Speed Compression
ghostpe -clone,mode=dump,src=1,dst=c:\C -split=640 -usbm -auto -z1 -fro
REM Restore to Local Drive C from Remote Drive over USB Cable from split Files
rem ghostpe -clone,mode=load,src=c:\C,dst=1 -usbm -auto -z1 -fro
REM Copy Local Drive C to Remote Drive over LPT Port Cable splitting Files into
640Mg Segments AtoName High Speed Compression
rem ghostpe -clone,mode=dump,src=1,dst=c:\C -split=640 -lpm -auto -z1 -fro
REM To Start Ghost in Parallel Port Slave Mode use Just next Line
rem ghostpe - lps
REM To Start Ghost in USB Slave Mode use Just next Line
rem ghostpe - usbs
choice /N Check Image File [Yn] ?
IF Errorlevel 2 GOTO CONTBCD2
IF NOT EXIST c:\C*.* GOTO CONTBCD2
Echo Testing Image File
ghostpe -chkimg,c:\C -auto -usbm
rem Pause
:CONTBCD2
Echo Backup of Drive C: on Remote C:\
Echo Should You NEED to Restore it to C: you Must
Echo Boot to a Floppy and run RIUC.bat
Echo BUT Check for hardware problems like cooling or viruses
Echo 1st as you may not have a software problem and restoring
Echo a prior software setup is Risk and fruitless if you have
Echo a hardware problem so play it safe check with Dave at DCI 1st.
Pause
GOTO END
:END
RIDC.bat
@Echo OFF
REM RIDC=Restore Image files from Drive 2 D: to Drive 1 C:
rem Echo Drive 2 is Source and thus must be a FAT Partition
rem Echo Drive 1 is Destination
rem Echo .
rem If NOT Exist D:\Backups\Ghost\1\C*.* GOTO Err4
Echo ******************* WARNING *********************
Echo Restoring Image Files from D: Drive2 to C: Drive1
Echo Are You REAL SURE You Want to Erase Everything on
Echo Your Main Hard Disk Drive C: and Restore an Image
Echo Backup from D: You May Want to Call Dave at DCI
Echo Before Doing this as you may have a hardware not
Echo a software problem and restoring will not
Echo necessarily fix your troubles, but you may loose
Echo important files!
Echo .
choice /N Are You SURE You Want to Continue and Overwrite C [Yn] ?
IF Errorlevel 2 GOTO ErrA
Echo .
Echo Write Down this Lisc# D670DB9F9B2C you will need it soon!
Pause
If NOT Exist D:\Backups\Ghost\1\C*.* GOTO NTFS
Rem Both Drives must be FAT partitions
REM Got A CRITICAL ERROR When Testing THIS! yet GhostPE worked but SOMETHING
WRONG on NEXT LINE! Find You MUST Spcify Source Partition ie :1 in this case
IF %1.==. GoTo NoName1
rem Stackey W144 "D670DB9F9B2C"CR
ghostpe -clone,MODE=load,SRC=d:\Backups\Ghost\%1\C:1,DST=1 -auto
GoTo Cont
:NoName1
rem Stackey W144 "D670DB9F9B2C"CR
ghostpe -clone,MODE=load,SRC=d:\Backups\Ghost\1\C:1,DST=1 -auto
GoTo Cont
:NTFS
Rem Drive C is NTFS or Unformatted so DOS sees Drive #2 as D!
IF %1.==. GoTo NoName2
rem Stackey W144 "D670DB9F9B2C"CR
ghostpe -clone,MODE=load,SRC=c:\Backups\Ghost\%1\C:1,DST=1 -auto
GoTo Cont
:NoName2
rem Stackey W144 "D670DB9F9B2C"CR
ghostpe -clone,MODE=load,SRC=c:\Backups\Ghost\1\C:1,DST=1 -auto
GoTo Cont
:Cont
Echo !!!! Remove the Disk or CD and Reboot This Computer RIGHT NOW !!!!
GOTO END
:ERRA
Echo Routine Aborted by User.
GOTO END
:END
RICD.bat
@Echo OFF
REM RICD=Restore Image files from C: to D:
Rem Probably best method to use as works for NTFS or FAT
If NOT Exist C:\Backups\Ghost\1\C*.* GOTO Err4
Echo .
Echo *********************** WARNING ************************
Echo Restoring Image Files from C: Drive to PHYSICAL Drive#2
Echo Are You REAL SURE You Want to Erase Everything on Your
Echo 2nd Hard Disk Drive D: and Restore an Image Backup from C:
Echo .
choice /N Are You SURE You Want to Continue [Yn] ?
IF Errorlevel 2 GOTO ErrA
Echo .
Echo Write Down this Lisc# D670DB9F9B2C you will need it soon!
Pause
IF %1.==. GoTo Name
rem Stackey W144 "D670DB9F9B2C"CR
ghostpe -clone,MODE=load,SRC=c:\Backups\Ghost\1\C:1,DST=2 -auto
GoTo NoName
:Name
rem Stackey W144 "D670DB9F9B2C"CR
ghostpe -clone,MODE=load,SRC=c:\Backups\Ghost\%1\C:1,DST=2 -auto
:NoName
Echo !!!Remove the Disk or CD and Reboot This Computer RIGHT NOW!!!
GOTO END
:ERR4
Echo ERROR! ... Backup Image File Not Found on Drive C ... Restore Aborted
GOTO END
:ERRA
Echo Routine Aborted by User.
GOTO END
:END
RIRC.bat
@Echo OFF
REM RIRC=Restore Image from CD-R to Drive C:
CLS
Echo ******************* WARNING *********************
Echo Restoring Image Files from CD-R Disks to Drive C:
Echo .
Echo Are You REAL SURE You Want to Erase Everything on
Echo Your Main Hard Disk Drive C: and Restore an Image
Echo Backup from CDs: You May Want to Call Dave at DCI
Echo Before Doing this as you may have a hardware not
Echo a software problem and restoring will not
Echo necessarily fix your troubles, but you may loose
Echo important files!
Echo .
choice /N Are You SURE You Want to Continue [Yn] ?
IF Errorlevel 2 GOTO ErrA
Echo .
Echo ERASING Everything on Drive C: and
Echo Restoring from CD-R Disks
Echo You will need to write down this number D670DB9F9B2C then
Echo Insert 1st CD-R Backup Disk (if not already in) and
Echo .
choice /N Are You SURE You Want to Continue and Overwrite Drive C [Yn] ?
IF Errorlevel 2 GOTO ErrA
GHOSTPE.EXE -clone,MODE=load,SRC=R:\CDR00001.GHO:1,DST=1 -auto
Echo If Process Completed then Remove the CD and
Echo Reboot This Computer RIGHT NOW!
GOTO END
:ERRA
Echo Routine Aborted by User.
GOTO END
:END
RIRD.bat
@Echo OFF
REM RIRC=Restore Image from CD-R to Drive 2 - D:
CLS
Echo ******************* WARNING *********************
Echo Restoring Image Files from CD-R Disks to Drive2 D:
Echo .
Echo Are You REAL SURE You Want to Erase Everything on
Echo Your 2nd Hard Disk Drive D: and Restore an Image
Echo Backup from CDs: You May Want to Call Dave at DCI
Echo Before Doing this as you may have a hardware not
Echo a software problem and restoring will not
Echo necessarily fix your troubles, but you may loose
Echo important files!
Echo .
choice /N Are You SURE You Want to Continue [Yn] ?
IF Errorlevel 2 GOTO ErrA
Echo .
Echo ERASING Everything on Drive D: and
Echo Restoring from CD-R Disks
Echo You will need to write down this number D670DB9F9B2C then
Echo Insert 1st CD-R Backup Disk (if not already in) and
Echo .
choice /N Are You SURE You Want to Continue [Yn] ?
IF Errorlevel 2 GOTO ErrA
GHOSTPE.EXE -clone,MODE=load,SRC=R:\CDR00001.GHO:1,DST=2 -auto
Echo If Process Completed then Remove the CD and
Echo Reboot This Computer RIGHT NOW!
GOTO END
:ERRA
Echo Routine Aborted by User.
GOTO END
:END
B.bat - Written for Specific Systems/Customers with two hard disks to most easily do a rotational backup for the customer as we do claim and do setup automated backup routines!
@Echo OFF
REM B.Bat=BICD.BAT=Backup Image C to D
REM THIS is Written for a Computer with two Hard Disks - The First Being XP with
NTFS and the Second Being FAT32!!!
CLS
Echo Backing up Drive C: to D:\Backups\Ghost\1
Echo .
Echo You should only do a full Backup if everything is working well!
Echo .
Echo Do NOT do this Full Backup if you are having any computer problems as you
Echo will possibly be overwritting your last backup with a bad software setup
Echo thus throwing out your good backup! Note: You can backup your Data to
Echo D: manually or via a routine we provided without having to do a FULL
Echo sizable and lengthy backup! Only do FULL Backups when your software
Echo setup has changed considerably and is working REAL well!
Echo .
Echo To abort this backup Remove the CD and restart the Computer!
Echo .
Echo Otherwise if everything is working WELL and you want to back it all up then
Echo note that you may be asked to verify the next screen and will need to hit Y
Echo for yes at that screen. Norton Ghost should say Source Local Drive 1 and
Echo Desitnation file C:\Backups\Ghost\1\C.Gho which is correct for a Windows XP
Echo Setup as C: is Drive#2 to Ghost cause Drive1 is NTFS & not assigned a
letter
Echo So to continue to the Ghost Backup screen - just
pause
CLS
Echo Starting Backup Now.
Echo Backing Up Drive 1: to Image Files on Drive 2:
REM Drive Two Referred to as C since Ghost DOS Boot won't assign a letter to the
First Drive!!
IF NOT EXIST C:\NUL GOTO Err1
IF NOT Exist C:\Backups\NUL MD C:\Backups
IF NOT Exist C:\Backups\Ghost\NUL MD C:\Backups\Ghost
REM Doing a Rotatation - up one number
REM Adjust code based upon estimate of customers max compressed C size and size
of D
C:
CD\Backups\Ghost
If Exist 3\Nul R:..\DCI\deltree /y 3
If Exist 3\Nul rd 3
If Exist 2\Nul move 2 3
If Exist 1\Nul move 1 2
IF NOT Exist C:\Backups\Ghost\1\NUL MD C:\Backups\Ghost\1
rem CD Version speed
rem R:..\DCI\Stackey W144 "D670DB9F9B2C"CR
rem Floppy Version Speed
rem ..\DCI\Stackey W255W255W70 "D670DB9F9B2C" CR
R:..\DCI\Stackey W144 "Y"
R:..\DCI\ghostpe -clone,mode=dump,src=1,dst=c:\Backups\Ghost\1\C -split=640
-auto -z1 -fx -fro
Echo .
Echo .
Echo Backup Completed - OK? Did you see and error messages?
Echo It is YOUR Responsibility to Verify the Backup was successful!
Echo .
Echo .
Echo Remove the CD and put it somewhere safe
Echo Then to Start up Normally you must restart
Echo this computer by Pressing Ctrl Alt Delete.
Echo .
Echo .
Echo After Restarting this computer you can check to see if the backup looks
Echo reasonable by going into Windows Explorer and browsing to the D:\Backup\
Echo Ghost\1 folder and verifying the D Drive is not full and that the number
Echo of gho files there and the total size of those files looks reasonable
Echo based upon sizes of the previous backups. This Routine tries to do
Echo rotational backups provided the drive has room. Previous backups are in
Echo the folders D:\Backups\Ghost\x where x is 2,3,4 etc as configured above
depending on drive space
GoTo END
:Err1
Echo Error! Backup Aborted!
Echo Drive D: (Destination Drive) was not found!
Echo Backup Failed. Call for Help.
Echo
:END
Supplemental Files we use include;
M.bat - A Menu launcher we use ourselves
@Echo OFF
REM GM.BAT Ghost Backup & Restore Menu
CLS
Type M.TXT
M.txt - Compliment to above bat file
Ghost Routines Menu #1:
============== Backup Copy Options ================
BCCD = Copy Drive C: to Drive D: Erasing D!
BCDC = Copy Drive D: to Drive C: Erasing C!
============= Backup to Image Options =============
BICD = Backup Image of Drive C: to Drive D:
BIDC = Backup Image of Drive D: to Drive C:
BICR = Backup Image of Drive C: to CD-R Disks
BIDR = Backup Image of Drive D: to CD-R Disks
BICU = Backup Image of Drive C via USB to Slave C
=========== Restore From Image Options ============
RICD = Restore Image from Drive C: to D: Erasing D!
RIDC = Restore Image from Drive D: to C: Erasing C!
RIRC = Restore Image from CD-Rs to C: Erasing C!
RIRD = Restore Image from CD-Rs to D: Erasing D!
================== MISC Options ===================
G = Ghost Interactive Mode for Manual Full Control
D = 2nd Hard Disk NOT a CD Drive. M2=Advanced Menu
ENTER Your Choice: ie Enter BCCD for 1st Option
M2.txt - Advanced and seldom used continuation menu
============== Ghost Advanced Menu Options ===============
NUB = USB Backup Image from C to slave
NUR = USB Restore Image from slave to C
NXx = Start Ghost Slave NetBios or IP or USB or Parallel
NMx = Start Ghost Server
NNB = NetBIOS Backup Image from C to slave
NNR = NetBIOS Restore Image from slave to C
NPB = Parallel Port Backup Image from C to slave
NPR = Parallel Port Restore Image from slave to D
ENTER Your Choice:
M.BAT - A Menu launcher for a specific customer's setup
@Echo OFF
REM GM.BAT Ghost Backup & Restore Menu
CLS
Type M.TXT
M.TXT - A Menu for Ghost Routines for a specific user
============= Backup to Image Options =============
BICD1 = Backup Image of Drive C: to Drive D:\BakCD1
BICD2 = Backup Image of Drive C: to Drive D:\BakCD2
BICDx = Backup Image of Drive C: to Drive D:\BakCDx
BICE1 = Backup Image of Drive C: to Drive E:\BakCE1
BICE2 = Backup Image of Drive C: to Drive E:\BakCE2
BICEx = Backup Image of Drive C: to Drive E:\BakCEx
=========== Restore From Image Options ============
RID1C = Restore Image from Drive D:\BakCD1 to C:
RID2C = Restore Image from Drive D:\BakCD2 to C:
RIDxC = Restore Image from Drive D:\BakCDx to C:
RIE1C = Restore Image from Drive E:\BakCE1 to C:
RIE2C = Restore Image from Drive E:\BakCE2 to C:
RIExC = Restore Image from Drive E:\BakCEx to C:
================== MISC Options ===================
G = Ghost Interactive Mode for Manual Full Control
NOTE: x = 1-6, assuming you can fit 6 Backups!
ENTER Your Choice: ie Enter BICD1 for 1st Option
Top |
Why DCI |
Support |
Prices Computers
Table of Contents |
Pictures of Components |
Contact Us
|
Links & Index