An effective tool for everyday data protection tasks
WinRAR Backup is a lightweight backup utility that automates the process of creating compressed archive backups using WinRAR technology. It allows users to define backup rules, specifying which files or folders should be archived, where the archives should be stored, and how the process should be executed.
The application provides a simple, user-friendly interface where users can:
Each backup operation takes selected files from a specified source directory and compresses them into a WinRAR archive stored at the chosen destination. The process can include subfolders and supports repeated or incremental use depending on configuration.
WinRAR Backup is particularly useful for users who:
Overall, WinRAR Backup combines simplicity with the powerful compression capabilities of WinRAR, making it an effective tool for everyday data protection tasks.
After starting the application this is how the main window is shown to you:
The central idea of WinRAR Backup is to define so called "Backup Rules" that specify what source directories get compressed into RAR archives. You can have multiple source folders compressed into individual archives or even merge them in a single archive. On each backup-run this list is processed from top to bottom.
To create a backup rule, follow these simple steps, first click on "Add" to see this dialog:
Here:
The new rule will appear in the list. You can now run it manually using Run or Backup Once (Now), or use it with scheduled backups.
Use "Edit" and "Delete" buttons to modify the list of backup rules.
Choose whether you prefer the installed or portable Version of this Software:
The Schedule page allows you to run backups automatically at defined times. Scheduling is controlled using the Play (start) and Stop buttons in the top toolbar. The schedule runs only while the program is open.
Configuration
If you set "Repeat every" to a value above 24h, Weekdays settings are ignored
After configuring the schedule, click Play to activate it. Click Stop at any time to deactivate scheduled backups.
The Settings Page lets you configure program behaviour:
In the lower half of the screen you can control the auto clean settings on a per-target-folder basis - as a convenient alternative to clicking on individual backup rule items.
The WinRAR settings page lets you configure WinRAR/compression related settings. You will be familiar with most of these settings when you already have been using WinRAR in the past:
Find below the most simple PHP-code to implement your webhook. After receiving a call from WinRAR Backup it will send all submitted data via email. This code should run with almost every webhoster right out of the box. Just put this code on your webspace - do not forget to put your email-address in there.
<&php
// put your email address here
$to = "winrarbackup@fe1.com";
// get input parameters
$subject = "";
$message = "";
if (isset($_POST["subject"])) $subject = trim($_POST["subject"]);
if (isset($_POST["message"])) $message = trim($_POST["message"]);
// validate input
if ($subject == "") {
// if parameters are missing, respond with "400 - Bad Request"
http_response_code(400);
echo("missing parameters");
exit();
}
// send mail
if (!mail($to,$subject,$message)) {
// if sending email failed, respond with "500 - Internal Server Error"
http_response_code(500);
echo("failed to send notification");
exit();
}
http_response_code(200);
echo("ok");
WinRAR Backup does not have any meaningful or special system requirements. It does not even need an installation.
Choose whether you prefer the installed or portable Version of this Software: