This article is for advanced users who want to add additional command line parameters when they launch Windows Backup from a job within Enhanced Windows Backup. Additional parameters can be passed - see the parameters box in the Job Editor of Enhanced Windows Backup
This information was extracted from the Microsoft Windows Backup documentation
You can perform backup operations at the command prompt or from a batch file
using the ntbackup
command followed by various parameters. Square brackets [] indicate optional
parameters.
Syntax:
ntbackup
backup [systemstate] "bks file name" /J "job name"
[/P "pool name"] [/G "guid name"]
[/T "tape name"] [/N "media name"]
[/F "file name"] [/D "set
description"] [/A] [/V:yes|no] [/R:yes|no] [/L:f|s|n]
[/M backup type] [/RS:yes|no] [/HC:on|off] [/UM]
[/SNAP:on|off]
Parameters:
systemstate
Specifies that you want to back up the
data. When you select this option, the backup type will be
forced to
or
.
.bks file name
Specifies the name of the backup selection file (.bks file) to be used for
this backup operation. A backup selection file contains information on the files
and folders you have selected for backup. You have to create the file using the
graphical user interface (GUI) version of Backup.
/J "job name"
Specifies the job name to be used in the
. The job name usually describes the files and folders you are
backing up in the current backup job, as well as the date and time you backed up
the files.
/P "pool name"
Specifies the
from which you want to use media. This is usually a subpool of
the
, such as 4mm DDS. If you select this parameter, you must
not use the following switches: /A /G /F /T.
/G "guid name"
Overwrites or appends to this tape. Do not use this switch in conjunction
with /P.
/T "tape name"
Overwrites or appends to this tape. Do not use this switch in conjunction
with /P.
/N "media name"
Specifies the new tape name. You must not use /A with this switch.
/F "file name"
Logical disk path and file name. You must not use the following switches with
this switch: /P /G /T.
/D "set description"
Specifies a label for each
.
/A
Performs an append operation. Either /G or /T must be used in
conjunction with this switch. Do not use this switch in conjunction with /P.
/V:yes|no
Verifies the data after the backup is complete.
/R:yes|no
Restricts access to this tape to the
or members of the Administrators
.
/L:f|s|n
Specifies the type of log file: f=full, s=summary, n=none
(no log file is created).
/M backup type
Specifies the backup type. It must be one of the following: normal, copy,
,
, or
.
/RS:yes|no
Backs up the
database.
/HC:on|off
Uses
, if available, on the tape drive.
/UM
Finds the first available media, formats it, and uses it for the current
backup operation. You must use the /P switch to designate a device-type
media pool when you use the /UM switch so that Backup searches for the
appropriate type of media (for example, 4mm DDS). When you use the /UM
switch, Backup will search the following media pools for available media: Free
pool, Import pool, Unrecognized pool, and Backup pool. When available media is
found, the search will stop and the media will be formatted and used without
prompting you for input. This command is not applicable to tape loaders and
should be used only if you have a stand-alone tape device.
/SNAP:on|off
Specifies whether or not the backup is a
.
Notes
Related Topics
The following examples show how to use the ntbackup command to back up
files and folders from the command prompt or by using a batch file.
Example 1:
ntbackup backup \\iggy-multi\c$ /m normal /j "My Job 1" /p "Backup" /n "Command Line Backup 1" /d "Command Line Functionality" /v:yes /r:no /l:s /rs:no /hc:on
This example will perform a
named "My Job 1" of the remote share \\iggy-multi\c$. It will
pull a tape from the Backup
, and name the tape "Command Line Backup 1." The description of
the backup job will be "Command Line Functionality." When the backup job is
complete, the backup will be verified, access will not be restricted to the
owner/administrator, the logging level will be set to summary only,
data will not be backed up, and
will be enabled.
Example 2:
ntbackup backup d:\ /j "My Job 2" /a /t "Command Line Backup 1" /m copy
This example will perform a
named "My Job 2" of the local drive D:\. The backed up files and
folders will be appended to the tape named "Command Line Backup 1." All other
options will default to those specified in the Backup program.
Example 3:
ntbackup backup "@C:\Program Files\Windows NT\ntbackup\data\commandline.bks" /j "My Job 3" /t "Command Line Backup 1" /n "Command Line Backup 2"
This example will perform a backup using the
that is specified in the Backup program. It will use the backup
selection file named Commandline.bks, located in the directory C:\Program Files\Windows NT\ntbackup\data\
to choose which files to backup. The backup job will be named "My Job 3" and it
will overwrite the tape named "Command Line Backup 1" with the new name "Command
Line Backup 2."
Example 4:
ntbackup backup \\iggy-multi\d$ /j "Command Line Backup 4" /f "D:\backup.bkf"
ntbackup backup \\iggy-multi\d$ /j "Command Line Backup 5" /f "D:\backup.bkf" /a
ntbackup backup \\iggy-multi\d$ /j "Command Line Backup 6" /f "D:\backup.bkf"
The previous examples show how to perform a backup to a file from the command
prompt. All three examples use the Backup program's default values for the
backup type, verification setting, logging level, hardware compression, and any
other restrictions. The first example shows how to backup \\iggy-multi\d$ to the
file D:\Backup.bkf. The second example shows how to append the same backup to
the same file. The third example shows how to overwrite the file with the same
backup. In all three examples, a complete
could be substituted for the drive letter (that is, instead of d:\backup.bkf,
the user could specify \\iggy-multi\d$\backup.bkf as the backup destination).