Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Published by Scroll Versions from space KNOW and version 8.0

...

Code Block
languagetext
titleUsage
C:\Users\User\Downloads>mrauto.exe

Macrium Reflect Auto - Backup/Restore Automation utility.

mrauto.exe -[b][r][s][l] <storage location> [backup name] <drive letters/disk numbers> [-t][-u][-p][-i][-e] [--stealth][--verbosequiet]

  -b | --backup     Creates a backup.
  -r | --restore    Restores a backup.
  -s | --status     Displays status of the last auto restore.
  -l | --list       Lists backups in the storage location by time.
                    Lists disks/partitions in the image or system.
       --stealth    Suppress backup notifications.
       --verbosequiet    Display  Suppress the Reflect console output.
  -f | --filter     Filter backup list by wildcard match. Used in --list option.
  -t | --type       Backup type - Full/Diff/Inc.
  -u | --user       Network user name - Domain\User or User
  -p | --password   Network password.
  -i | --imagepwd   Image password for Backup/Restore/List.
  -e | --encryption AES encryption level for Backups. 0 - none, 1 - 128 bit, 2 - 192 bit, 3 - 256 bit
  -n | --nowarning  Suppress overwrite confirmation during Restore.
  -v | --verify     Verify image file after Backup or before Restore.
       --retention  Apply Reflect Default Retention Rules.
  -h | --help       Show options.

...

Code Block
languagetext
titleHelp
C:\Users\User\Downloads>mrauto.exe -h

Options:
  -h [ --help ]
  -b [ --backup ] arg                   Creates a backup.
  -r [ --restore ] arg                  Restores a backup.
  -s [ --status ]                       Displays status of the last auto
                                        restore.
  -f [ --filter ] [=arg(=*.mrimg)] (=*) Filter backup list by wildcard match.
  -l [ --list ] arg                     Lists backups/disks/partitions.
  --stealth                             Stealth Mode - Suppresses backup
                                        notifications.
  -t [ --type ] arg (=Full)             Backup type - Full/Diff/Inc
  -u [ --user ] arg                     Network User Name.
  -p [ --password ] arg                 Network Password.
  -i [ --imagepwd ] arg                 Image Password
  -e [ --encryption ] arg (=0)          AES Encryption Level. 0 - none, 1 - 128
                                        bit, 2 - 192 bit, 3 - 256 bit
  -n [ --nowarning ]                    Suppress overwrite confirmation during
                                        Restore.
  -v [ --verify ]                       Verify image file after Backup or
                                        before Restore.
  --retention                           Apply Reflect Default Retention Rules.
  --verbosequiet                             Verbose  quiet Log - DisplaysSuppress Reflect output.


Backup and Restore supports source disk/partition selections by drive letter or disk and partition number combination. Disk/partition numbers are 1 based index as shown in Reflect rather than 0 based index shown in Disk Management console. 

...

Example: mrauto.exe -b <backup location> 1,2:1,2:3 --verbose

In the above sample, it will backup all partitions contained in disk# 1 and partition 1 and 3 from disk# 2. To see available disks and partitions in the system please run 'mrauto.exe -l .' command.

...

By specifying --stealth option will supress all Backup notifications. Customers wanting to see suppress progress output may specify --verbosequiet option. Without With the --verbosequiet option, no output from Reflect will be shown and customers may only be able to find exit status via %ERRORLEVEL% 

...

Code Block
languagetext
titleBackup
C:\Users\User\Downloads>mrauto.exe -b

 usage:   mrauto.exe -b <backup location> [image name] <{vol1,vol2}|{disk1,disk2}|{disk1:par1,disk2:par2}>
                        [-t full/diff/inc] [-u user] [-p pass] [-i imagepass] [-e 0/1/2/3]
                        [--verify] [--retention] [--stealth] [--verbosequiet]

 example: mrauto.exe -b D:\Backups C: -u User -p Pass --stealth
--verbose           mrauto.exe -b D:\Backups Test C,D,E -t inc
--verbose           mrauto.exe -b D:\Backups Test D --verify --retention --verbosequiet
          mrauto.exe -b \\Share\Backups Test 1:1,2:2 -i ImagePass -e 1
--verbose           mrauto.exe -b D:\Backups Test 1,2

  For more information type 'mrauto.exe -h'

...

Example: mrauto.exe -r D:\Backups\Test-00-00.mrimg?C,D,E --verbose

Like Backup command, mixing drive letter and disk numbers in a single operation is not allowed. To see what are drive letters or disk numbers contained within the image, please run 'mrauto.exe -l <full image path>'

...

Code Block
languagetext
titleRestore
C:\Users\User\Downloads>mrauto.exe -r

 usage:   mrauto.exe -r <{[location] [image file]} | {full image path}>[?{vol1,vol2}|{disk1,disk2}|{disk1:par1,disk2:par2}]
                        [target disk] [-u user] [-p pass] [-i imagepass] [--verify][--nowarning][--verbosequiet]

 example: mrauto.exe -r D:\Backups Test-00-00.mrimg
--verbose           mrauto.exe -r \\Share\Backups\Test-00-00.mrimg -u User -p Pass -i ImagePass --verbosequiet
          mrauto.exe -r D:\Backups\Test-00-00.mrimg?C,D,E
          mrauto.exe -r D:\Backups\Test-00-00.mrimg?1:1,1:2
          mrauto.exe -r D:\Backups\Test-00-00.mrimg 1
          mrauto.exe -r D:\Backups\Test-00-00.mrimg --verify
          mrauto.exe -r D:\Backups\Test-00-00.mrimg?1:2 1

 NOTE: Restoring multiple disks within an image are not supported.
       Only multiple partitions in the same disk are supported.

  For more information type 'mrauto.exe -h'

...