]> git.p6c8.net - dsmonrot.git/blob - dsmonrot.ps1
- Now all error messages are sent by mail
[dsmonrot.git] / dsmonrot.ps1
1 # DSMonRot
2 # Script for rotating Drive Snapshot backups monthly
3 #
4 # Author: Patrick Canterino <patrick@patrick-canterino.de>
5 # WWW: https://www.patrick-canterino.de/
6 # https://github.com/pcanterino/dsmonrot
7 # License: 2-Clause BSD License
8 #
9 # Drive Snapshot is copyright by Tom Ehlert
10 # http://www.drivesnapshot.de/
11
12 # Config
13
14 # Path to backup directory
15 [String]$backupDir = "Z:\"
16 # Keep backup for this amount of months (excluding the current month),
17 # -1 for indefinite
18 [Int32]$keepMonths = 2
19 # Rotate BEFORE the beginning of a full backup (default is after a successful
20 # full backup)
21 # WARNING: If this option is set to $True and the full backup fails you could
22 # have NO backup
23 $rotateBeforeBackup = $False
24 # Path to Drive Snapshot
25 [String]$dsPath = "C:\Users\Patrick\Desktop\DSMonRot\snapshot.exe"
26 # Path to Drive Snapshot log file (specify only the file name if you set
27 # $dsLogFileToBackup to $True)
28 #[String]$dsLogFile = "C:\Users\Patrick\Desktop\DSMonRot\snapshot.log"
29 [String]$dsLogFile = "snapshot.log"
30 # Set to $True if you want to put the log file of Drive Snapshot into the same
31 # directory as the backup
32 [Boolean]$dsLogFileToBackup = $True
33 # Disks to backup, see http://www.drivesnapshot.de/en/commandline.htm
34 [String]$disksToBackup = "HD1:1"
35 # Path to DSMonRot log file
36 [String]$logFile = "C:\Users\Patrick\Desktop\DSMonRot\dsmonrot.log"
37
38 # Map network share to this drive letter, comment out if you don't want to use it
39 [String]$smbDrive = "Z"
40 # Path to network share
41 [String]$smbPath = "\\192.168.0.3\ds"
42 # User and password for connecting to network share, comment out if you don't want to use it
43 # (for example if you want to pass current Windows credentials)
44 [String]$smbUser = "patrick"
45 [String]$smbPassword = ""
46
47 # Send an email if an error occured
48 [Boolean]$emailOnError = $True
49 # From address of email notification
50 [String]$emailFromAddress = "alarm@test.local"
51 # To address of email notification
52 [String]$emailToAddress = "patrick@test.local"
53 # Subject of email notification
54 [String]$emailSubject = "DSMonRot on $env:computername"
55 # Mail server
56 [String]$emailMailserver = "localhost"
57 # SMTP Port
58 [Int32]$emailPort = 25
59 # Use SSL?
60 [Boolean]$emailSSL = $False
61 # Use SMTP Auth?
62 [Boolean]$emailAuth = $False
63 # SMTP Auth User
64 [String]$emailUser = ""
65 # SMTP Auth Password
66 [String]$emailPassword = ""
67
68 # End of config
69
70 $dsAdditionalArgs = @("--UseVSS")
71
72 # Allow SMTP with SSL and SMTP Auth
73 # see: http://petermorrissey.blogspot.de/2013/01/sending-smtp-emails-with-powershell.html
74 function Send-Email([String]$body) {
75 Write-Host "Sending email: $emailToAddress, $body"
76
77 try {
78 $smtp = New-Object System.Net.Mail.SmtpClient($emailMailServer, $emailPort)
79
80 $smtp.EnableSSL = $emailSSL
81
82 if($emailAuth) {
83 $smtp.Credentials = New-Object System.Net.NetworkCredential($emailUser, $emailPassword)
84 }
85
86 $smtp.Send($emailFromAddress, $emailToAddress, $emailSubject, $body)
87 }
88 catch {
89 Write-Host "Could not send email: $_.Exception.Message"
90 }
91 }
92
93 function Rotate-Backup {
94 if($keepMonths -lt 0) {
95 return
96 }
97
98 Write-Host "Rotating"
99
100 $keepMonthsCount = $keepMonths
101
102 Get-ChildItem $backupDir -Directory | Where-Object {($_.Name -ne $currMonth) -and ($_.Name -match "^\d{4,}-\d{2}$")} | Sort-Object -Descending |
103 Foreach-Object {
104 Write-Host $_ "=>" $_.FullName
105
106 if($keepMonthsCount -ge 0) {
107 $keepMonthsCount--
108 }
109
110 if($keepMonthsCount -eq -1) {
111 Write-Host "Deleting $_"
112 Remove-Item -Recurse -Force $_.FullName
113 }
114 }
115 }
116
117 $startTime = Get-Date -format "yyyy-MM-dd HH:mm:ss"
118 Write-Host "Started at $startTime"
119
120 $errorMessages = @()
121
122 $smbConnected = $False
123 $doBackup = $False
124 $success = $False
125 $isDiff = $False
126 $dsCommand = ""
127
128 if($smbDrive) {
129 try {
130 Write-Host "Connecting network drive"
131
132 if($smbUser -and $smbPassword) {
133 Write-Host "With credentials"
134
135 $secSmbPassword = $smbPassword | ConvertTo-SecureString -asPlainText -Force
136 $smbCredential = New-Object System.Management.Automation.PSCredential($smbUser, $secSmbPassword)
137
138 New-PSDrive -Name $smbDrive -PSProvider "FileSystem" -Root $smbPath -Credential $smbCredential -Persist -ErrorAction Stop
139 }
140 else {
141 Write-Host "Without credentials"
142
143 New-PSDrive -Name $smbDrive -PSProvider "FileSystem" -Root $smbPath -Persist -ErrorAction Stop
144 }
145
146 $smbConnected = $True
147 }
148 catch {
149 Write-Host "Could not connect to network drive $smbDrive`: $_.Exception.Message"
150 $errorMessages += "Could not connect to network drive $smbDrive`: $_.Exception.Message"
151 }
152 }
153
154 if(!(Test-Path $backupDir)) {
155 Write-Host "Directory $backupDir does not exist!"
156 $errorMessages += "Directory $backupDir does not exist!"
157 }
158
159 if($errorMessages.Count -eq 0) {
160 $currMonth = Get-Date -format "yyyy-MM"
161 $currDay = Get-Date -format "yyyy-MM-dd"
162
163 Write-Host $currMonth
164
165 $backupTarget = $backupDir + "\" + $currMonth
166 $backupTargetFull = $backupTarget + "\" + "Full"
167
168 $backupTargetDiff = $backupTarget + "\" + "Diff-" + $currDay
169
170 Write-Host $backupTarget
171
172 if((Test-Path $backupTarget) -and (Test-Path $backupTargetFull) -and (Test-Path "$backupTargetFull\*.hsh")) {
173 Write-Host "Differential backup"
174
175 $isDiff = $True
176
177 if(!(Test-Path $backupTargetDiff)) {
178 Write-Host "Creating directory $backupTargetDiff"
179
180 try {
181 New-Item -ItemType directory -Path $backupTargetDiff -ErrorAction Stop
182 $doBackup = $True
183 }
184 catch {
185 Write-Host "Could not create directory $backupTargetDiff`: $_.Exception.Message"
186 $errorMessages += "Could not create directory $backupTargetDiff`: $_.Exception.Message"
187 }
188
189 if($doBackup) {
190 $dsLogPath = if($dsLogFileToBackup) { "$backupTargetDiff\$dsLogFile" } else { $dsLogFile }
191
192 $dsArgs = @($disksToBackup, "--logfile:$dsLogPath", "$backupTargetDiff\`$disk.sna", "-h$backupTargetFull\`$disk.hsh") + $dsAdditionalArgs
193 Write-Host $dsPath ($dsArgs -join " ")
194
195 $dsCommand = "$dsPath $dsArgs"
196
197 & $dsPath $dsArgs
198
199 if($LastExitCode -ne 0) {
200 Write-Host "Drive Snapshot failed to backup! Exit code: $LastExitCode"
201 $errorMessages += "Drive Snapshot failed to backup! Exit code: $LastExitCode"
202 }
203 else {
204 $success = $True
205 }
206 }
207 }
208 else {
209 Write-Host "Directory $backupTargetDiff already exists!"
210 $errorMessages += "Directory $backupTargetDiff already exists!"
211 }
212 }
213 else {
214 Write-Host "Full backup"
215
216 if(!(Test-Path $backupTarget)) {
217 Write-Host "Creating directory $backupTarget"
218
219 try {
220 New-Item -ItemType directory -Path $backupTarget -ErrorAction Stop
221 }
222 catch {
223 Write-Host "Could not create directory $backupTarget`: $_.Exception.Message"
224 $errorMessages += "Could not create directory $backupTarget`: $_.Exception.Message"
225 }
226 }
227
228 if(!(Test-Path $backupTargetFull)) {
229 Write-Host "Creating directory $backupTargetFull"
230
231 try {
232 New-Item -ItemType directory -Path $backupTargetFull -ErrorAction Stop
233 $doBackup = $True
234 }
235 catch {
236 Write-Host "Could not create directory $backupTargetFull`: $_.Exception.Message"
237 $errorMessages += "Could not create directory $backupTargetFull`: $_.Exception.Message"
238 }
239 }
240 else {
241 $doBackup = $True
242 }
243
244 if($doBackup) {
245 if($rotateBeforeBackup) {
246 Rotate-Backup
247 }
248
249 $dsLogPath = if($dsLogFileToBackup) { "$backupTargetFull\$dsLogFile" } else { $dsLogFile }
250
251 $dsArgs = @($disksToBackup, "--logfile:$dsLogPath", "$backupTargetFull\`$disk.sna") + $dsAdditionalArgs
252 Write-Host $dsPath ($dsArgs -join " ")
253
254 $dsCommand = "$dsPath $dsArgs"
255
256 & $dsPath $dsArgs
257
258 if($LastExitCode -ne 0) {
259 Write-Host "Drive Snapshot failed to backup! Exit code: $LastExitCode"
260 $errorMessages += "Drive Snapshot failed to backup! Exit code: $LastExitCode"
261 }
262 else {
263 $success = $True
264 }
265
266 if($rotateBeforeBackup -eq $False -and $success -eq $True) {
267 Rotate-Backup
268 }
269 }
270 }
271 }
272
273 if($smbConnected) {
274 Write-Host "Disconnecting network drive"
275
276 try {
277 Remove-PSDrive $smbDrive -ErrorAction Stop
278 }
279 catch {
280 Write-Host "Could not disconnect network drive $smbDrive`: $_.Exception.Message"
281 $errorMessages += "Could not disconnect network drive $smbDrive`: $_.Exception.Message"
282 }
283 }
284
285 if($emailOnError -and $errorMessages.Count -gt 0) {
286 $emailBody = "This is DSMonRot on $env:computername, started at $startTime.`n"
287 $emailBody += "An error occured while performing a backup. Below are the error messages and some status information.`n`n"
288 $emailBody += "Differential backup: $isDiff`n"
289 $emailBody += "Backup successful: $success`n"
290 $emailBody += "Drive Snapshot command: $dsCommand`n`n"
291 $emailBody += ($errorMessages -join "`n")
292
293 Send-Email ($emailBody)
294 }
295
296 $endTime = Get-Date -format "yyyy-MM-dd HH:mm:ss"
297 Write-Host "Ended at $endTime"

patrick-canterino.de