The AT command to run an online backup of the Microsoft Exchange Directory Store and Information Store is:
AT NTBACKUP BACKUP  DS \\servername IS \\servername /B /T NORMAL
-or-
AT <time> Batchfile
            Notice: This website is an unofficial Microsoft Knowledge Base (hereinafter KB) archive and is intended to provide a reliable access to deleted content from Microsoft KB. All KB articles are owned by Microsoft Corporation. Read full disclaimer for more details.
View products that this article applies to.
rem ** 3/7/96  Backup Written by Joseph Pagano
rem ** This will backup the IS and DS on both WNTEXS1 and WNTEXD1.
ntbackup backup DS \\WNTEXS1 IS \\WNTEXS1 /v /d "WNTEXS1 IS-DS" /b /t
Normal /l c:\winnt35\backup.log /e
ntbackup backup DS \\WNTEXD1 IS \\WNTEXD1 /a /v /d "WNTEXS1 IS-DS" /b /t
Normal /l c:\winnt35\backup.log /e
exit
				
Parameters:
operation     - Specifies the operation, backup.
Path          - If you are backing up a drive, specifies one or more paths
                of the directories to be backed up. If you are backing up
                Microsoft Exchange Server components, specifies the
                component and the server using the following format:
                    {DS server /IS server}
                where Server is the name of the server you are backing up
                preceded by two backslashes (for example, \\berkeley). DS
                indicates that you are backing up the directory, and IS
                indicates that you are backing up the information store.
/a            - Causes backup sets to be added after the last backup set on
                the tape. When /a is not specified, the program reuses the
                tape and replaces previous data. When more than one drive
                is specified but /a is not, the  program overwrites the
                contents of the tape with the information from the first
                drive selected and then appends the backup sets for the
                remaining drives.
/v            - Verifies the operation.
/r            - Restricts access.
/d "text"     - Specifies a description of the backup contents.
/b            - Specifies that the local registry be backed up.
/hc:on or     - Specifies that hardware compression is on or off.
/hc:off
/t {option}   - Specifies the backup type. Option can be one of the
                following:
                   Normal       - All selected files or Microsoft Exchange
                                  Server components are backed up and
                                  marked as such on the disk.
                   Copy         - All selected files or Microsoft Exchange
                                  Server components are backed up, but they
                                  are not marked as such on the disk.
                   Incremental  - Among the selected files or Microsoft
                                  Exchange Server components, only those
                                  that have been modified are backed up and
                                  marked as such on the disk.
                   Differential - The selected files or Microsoft Exchange
                                  Server components that have been modified
                                  are backed up, but they are not marked as
                                  such on the disk.
                   Daily        - Among the selected files, only those that
                                  have been modified that same day are
                                  backed up, but they are not marked as
                                  such on the disk. This can be useful if
                                  you want to take work home and need a
                                  quick way to select the files that you
                                  worked on that day. This option is not
                                  available when backing up Microsoft
                                  Exchange Server components.
/l "filename" - Specifies the filename for the backup log.
/e            - Specifies that the backup log include exceptions only.
/tape:{n}     - Specifies the tape drive to which the files should be
                backed up. N is a number from 0 to 9 that corresponds to
                the tape drive number listed in the registry.
				Keywords: KB152313, kbusage