snapcontrol/README.md

81 lines
2.5 KiB
Markdown
Raw Permalink Normal View History

2021-05-26 00:54:46 +02:00
# Snapcontrol
## Short description
2021-10-03 15:43:21 +02:00
Drive Snapshot backup controller.
2021-05-26 00:54:46 +02:00
A backup wrapper program for Windows boxes.
Features:
2021-05-30 22:53:32 +02:00
- Starts a backup via Windows Scheduler using Drive Snapshot by Tom Ehlert
2021-10-03 15:43:21 +02:00
- Can ask the user for permission to start a backup
- Can do a shutdown after backup
- Different backup targets (local DRIVE, SMB, FTP)
- Encryption support (via Drive Snapshot)
- Verifies the backup (optional)
- New full backup every month
- Daily differential backup
- Writes detailed logfile and history log
2021-10-03 15:43:21 +02:00
- Sends reports via email (using cmail.exe)
## Requirements
You will need the tool [Drive Snapshot](http://www.drivesnapshot.de/en/order.htm) by Tom Ehlert Software.
2021-05-26 00:54:46 +02:00
Download here: [snapshot.exe](http://www.drivesnapshot.de/download/snapshot.exe)
64-bit version: [snapshot64.exe](http://www.drivesnapshot.de/download/snapshot64.exe)
2021-05-26 00:54:46 +02:00
You can test Drive snapshot for a limited time. Please support this great tool and consider to buy a license.
2021-10-03 15:43:21 +02:00
You will also need [CMail](https://www.inveigle.net/cmail) for sending emails.
Get it from here: https://www.inveigle.net/cmail/download
## Installation
2023-03-11 21:54:39 +01:00
- Download the latest release and unzip the files (.exe and .ini file) to some path of your choice
- Open "snapcontrol.ini" with the editor of your choice and set the following variables:
- BinPath
- TargetPath
- TargetUser
- TargetPassword
- Disks2Dump
- Copy the Drive Snapshot binary to "BinPath"
- Optional step: set "InstallTo" to your desired location
- Open a dos box and execute:
```dos
snapcontrol.exe /I
```
2023-03-11 21:54:39 +01:00
Snapcontrol will find "snapcontrol.ini" automagically in the path where snapcontrol.exe was *installed*!
2023-03-11 21:54:39 +01:00
That's all. Snapcontrol will now be called by the Windows scheduler. See "snapcontrol.ini" for detailed comments on the features.
2021-05-26 00:54:46 +02:00
## USAGE
```dos
C:\>snapcontrol.exe /?
2023-07-23 11:44:46 +02:00
usage: snapcontrol.exe [ /S | /I | /V | /D | /? ]
2023-03-11 22:44:29 +01:00
/S = silent mode (no user interaction!)
2023-03-11 21:54:39 +01:00
/I = install/update scheduler job
2021-05-26 00:54:46 +02:00
/V = show version
2023-03-11 21:54:39 +01:00
/D = dry run
/? = help
2023-07-23 11:44:46 +02:00
RETURNCODES:
-----------------------------------------------------
99 = usage was called / wrong arguments or parameters
98 = cannot read inifile (does not exist ?)
97 = i don't have admin rights
96 = mailer (cmail) not found or not working
95 = Drive Snapshot version is not supported
94 = Drive Snapshot exe not found
0 = OK
2021-05-26 00:54:46 +02:00
```
2023-03-11 22:44:29 +01:00
*HINT:* Everytime you change the values in "BackupSched" or "BackupStart" you will have to call snapcontrol.exe with the /I switch.
2021-10-03 15:43:21 +02:00