-
-
Notifications
You must be signed in to change notification settings - Fork 39
/
Hyper-V-Backup.ps1
1615 lines (1366 loc) · 61.3 KB
/
Hyper-V-Backup.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<#PSScriptInfo
.VERSION 24.08.29
.GUID c7fb05cc-1e20-4277-9986-523020060668
.AUTHOR Mike Galvin Contact: [email protected]
.COMPANYNAME Mike Galvin
.COPYRIGHT (C) Mike Galvin. All rights reserved.
.TAGS Hyper-V Virtual Machines Full Backup Export Permissions Zip History 7-Zip
.LICENSEURI https://github.com/Digressive/HyperV-Backup-Utility?tab=MIT-1-ov-file
.PROJECTURI https://gal.vin/utils/hyperv-backup-utility/
.ICONURI
.EXTERNALMODULEDEPENDENCIES
.REQUIREDSCRIPTS
.EXTERNALSCRIPTDEPENDENCIES
.RELEASENOTES
#>
<#
.SYNOPSIS
Hyper-V Backup Utility - Flexible backup of Hyper-V Virtual Machines.
.DESCRIPTION
Creates a full backup of virtual machines.
Run with -help or no arguments for usage.
#>
## Set up command line switches.
[CmdletBinding()]
Param(
[alias("BackupTo")]
$BackupUsr,
$SMBUsr,
$SMBPwd,
[alias("Keep")]
$History,
[alias("List")]
[ValidateScript({Test-Path -Path $_ -PathType Leaf})]
$VmList,
[alias("Wd")]
$WorkDirUsr,
[alias("CaptureState")]
$CaptureStateOpt,
[alias("SzOptions")]
$SzSwitches,
[alias("L")]
$LogPathUsr,
[alias("LogRotate")]
$LogHistory,
[alias("Subject")]
$MailSubject,
[alias("SendTo")]
$MailTo,
[alias("From")]
$MailFrom,
[alias("Smtp")]
$SmtpServer,
[alias("Port")]
$SmtpPort,
[alias("User")]
$SmtpUser,
[alias("Pwd")]
[ValidateScript({Test-Path -Path $_ -PathType Leaf})]
$SmtpPwd,
[alias("MakeCreds")]
$MkCr,
[Alias("Webhook")]
[ValidateScript({Test-Path -Path $_ -PathType Leaf})]
[string]$Webh,
[string]$Prefix,
[switch]$AllVms,
[switch]$UseSsl,
[switch]$NoPerms,
[switch]$Compress,
[switch]$Sz,
[switch]$ShortDate,
[switch]$Help,
[switch]$LowDisk,
[switch]$ProgCheck,
[switch]$OptimiseVHD,
[switch]$NoBanner)
If ($NoBanner -eq $False)
{
Write-Host -ForegroundColor Yellow -BackgroundColor Black -Object "
_ _ __ __ ____ _ _ _ _ _ _ _ _
| | | | \ \ / / | _ \ | | | | | | | (_) (_) |
| |__| |_ _ _ __ ___ _ _\ \ / / | |_) | __ _ ___| | ___ _ _ __ | | | | |_ _| |_| |_ _ _
| __ | | | | '_ \ / _ \ '__\ \/ / | _ < / _ |/ __| |/ / | | | '_ \ | | | | __| | | | __| | | |
| | | | |_| | |_) | __/ | \ / | |_) | (_| | (__| <| |_| | |_) | | |__| | |_| | | | |_| |_| |
|_| |_|\__, | .__/ \___|_| \/ |____/ \__,_|\___|_|\_\\__,_| .__/ \____/ \__|_|_|_|\__|\__, |
__/ | | | | __/ |
|___/|_| |_| |___/
Mike Galvin https://gal.vin Version 24.08.29
Donate: https://www.paypal.me/digressive See -help for usage
"
}
If ($PSBoundParameters.Values.Count -eq 0 -or $Help)
{
Write-Host -Object " Usage:
From a terminal run: [path\Hyper-V-Backup.ps1] -BackupTo [path]
This will backup all the VMs running to the backup location specified.
Use -SMBUsr [username] and -SMBPwd [password] to provide authentication to the backup location, such as an SMB share.
---- Virtual Machine Selection Options ----
Use -List [path\vms.txt] to specify a list of vm names to backup.
Use -Prefix [prefix] to specify a list of vm names with a prefix to backup.
Use -AllVMs to specify all VMs to backup.
Use -CaptureState to specify which method to use when exporting.
Use -Wd [path] to configure a working directory for the backup process.
Use -Keep [number] to specify how many days worth of backup to keep.
Use -ShortDate to use only the Year, Month and Day in backup filenames.
Use -LowDisk to remove old backups before new ones are created. For low disk space situations.
Use -ProgCheck to send notifications (email or webhook) after each VM is backed up.
Use -OptimiseVHD to optimise the VHDs and make them smaller before copy. Must be used with -NoPerms option.
-NoPerms should only be used when a regular backup cannot be performed.
Please note: this will cause the VMs to shutdown during the backup process.
---- Compression Options ----
Use -Compress to compress the VM backups in a zip file using Windows compression.
Use -Sz to use 7-zip
Use -SzOptions ""'-t7z,-v2g,-ppassword'"" to specify 7-zip options like file type, split files or password.
---- Logging Options ----
To output a log: -L [path].
To remove logs produced by the utility older than X days: -LogRotate [number].
Run with no ASCII banner: -NoBanner
---- Webhook Options ----
To send the log to a webhook on job completion:
Specify a txt file containing the webhook URI with -Webhook [path\webhook.txt]
---- Email Options ----
To use the 'email log' function:
Specify the subject line with -Subject ""'[subject line]'"" If you leave this blank a default subject will be used
Make sure to encapsulate it with double & single quotes as per the example for Powershell to read it correctly.
Specify the 'to' address with -SendTo [[email protected]]
For multiple addresses, separate with a comma.
Specify the 'from' address with -From [[email protected]]
Specify the SMTP server with -Smtp [smtp server name]
Specify the port to use with the SMTP server with -Port [port number].
If none is specified then the default of 25 will be used.
Specify the user to access SMTP with -User [[email protected]]
Specify the password file to use with -Pwd [path\filename.txt].
Use SSL for SMTP server connection with -UseSsl.
---- How to generate a credentials file for SMTP authentication ----
To generate an encrypted password file run this script with -MakeCreds filename.txt
on the computer and running as the user that will run the backup."
}
else {
## If logging is configured, start logging.
## If the log file already exists, clear it.
If ($LogPathUsr)
{
## Clean User entered string
$LogPath = $LogPathUsr.trimend('\')
## Make sure the log directory exists.
If ((Test-Path -Path $LogPath) -eq $False)
{
New-Item $LogPath -ItemType Directory -Force | Out-Null
}
$LogFile = ("Hyper-V-Backup_{0:yyyy-MM-dd_HH-mm-ss}.log" -f (Get-Date))
$Log = "$LogPath\$LogFile"
If (Test-Path -Path $Log)
{
Clear-Content -Path $Log
}
}
## Function to get date in specific format.
Function Get-DateFormat()
{
Get-Date -Format "yyyy-MM-dd HH:mm:ss"
}
Function Get-DateShort()
{
Get-Date -Format "yyyy-MM-dd"
}
Function Get-DateLong()
{
Get-Date -Format "yyyy-MM-dd_HH-mm-ss"
}
## Function for logging.
Function Write-Log($Type,$Evt)
{
If ($Type -eq "Info")
{
If ($LogPathUsr)
{
Add-Content -Path $Log -Encoding ASCII -Value "$(Get-DateFormat) [INFO] $Evt"
}
Write-Host -Object " $(Get-DateFormat) [INFO] $Evt"
}
If ($Type -eq "Succ")
{
If ($LogPathUsr)
{
Add-Content -Path $Log -Encoding ASCII -Value "$(Get-DateFormat) [SUCCESS] $Evt"
}
Write-Host -ForegroundColor Green -Object " $(Get-DateFormat) [SUCCESS] $Evt"
}
If ($Type -eq "Err")
{
If ($LogPathUsr)
{
Add-Content -Path $Log -Encoding ASCII -Value "$(Get-DateFormat) [ERROR] $Evt"
}
Write-Host -ForegroundColor Red -BackgroundColor Black -Object " $(Get-DateFormat) [ERROR] $Evt"
}
If ($Type -eq "Conf")
{
If ($LogPathUsr)
{
Add-Content -Path $Log -Encoding ASCII -Value "$Evt"
}
Write-Host -ForegroundColor Cyan -Object " $Evt"
}
}
## Function to optimise the VHD
Function OptimVHD()
{
try {
Write-Log -Type Info -Evt "(VM:$Vm) Optimising VHD(s)"
$VmVhds = Get-VHD -Path $($Vm | Get-VMHardDiskDrive | Select-Object -ExpandProperty "Path")
## Loop through each VHD file and optimise
ForEach ($Vhd in $VmVhds) {
Write-Log -Type Info -Evt "(VM:$Vm) Used space before optimising VHD [$($Vhd.Path)] = $([math]::ceiling((Get-VHD -Path $Vhd.Path).FileSize / 1GB )) GB"
Optimize-VHD -Path "$($Vhd.Path)" -Mode Full
Write-Log -Type Info -Evt "(VM:$Vm) Used space after optimising VHD [$($Vhd.Path)] = $([math]::ceiling((Get-VHD -Path $Vhd.Path).FileSize / 1GB )) GB"
$intTotalDisksSize += (Get-VHD -Path $Vhd.Path).FileSize
}
Write-Log -Type Info -Evt "(VM:$Vm) Done optimising VHD(s)"
}
catch {
$_.Exception.Message | Write-Log -Type Err -Evt "(VM:$Vm) $_"
}
}
## Function for Notifications
Function Notify()
{
## This whole block is for e-mail, if it is configured.
If ($SmtpServer)
{
If (Test-Path -Path $Log)
{
## Default e-mail subject if none is configured.
If ($Null -eq $MailSubject)
{
$MailSubject = "Hyper-V Backup Utility Log"
}
## Default Smtp Port if none is configured.
If ($Null -eq $SmtpPort)
{
$SmtpPort = "25"
}
## Setting the contents of the log to be the e-mail body.
$MailBody = Get-Content -Path $Log | Out-String
ForEach ($MailAddress in $MailTo)
{
## If an smtp password is configured, get the username and password together for authentication.
## If an smtp password is not provided then send the e-mail without authentication and obviously no SSL.
If ($SmtpPwd)
{
$SmtpPwdEncrypt = Get-Content $SmtpPwd | ConvertTo-SecureString
$SmtpCreds = New-Object System.Management.Automation.PSCredential -ArgumentList ($SmtpUser, $SmtpPwdEncrypt)
## If -ssl switch is used, send the email with SSL.
## If it isn't then don't use SSL, but still authenticate with the credentials.
If ($UseSsl)
{
Send-MailMessage -To $MailAddress -From $MailFrom -Subject "$MailSubject $Succi/$($Vms.count) VMs Successful" -Body $MailBody -SmtpServer $SmtpServer -Port $SmtpPort -UseSsl -Credential $SmtpCreds
}
else {
Send-MailMessage -To $MailAddress -From $MailFrom -Subject "$MailSubject $Succi/$($Vms.count) VMs Successful" -Body $MailBody -SmtpServer $SmtpServer -Port $SmtpPort -Credential $SmtpCreds
}
}
else {
Send-MailMessage -To $MailAddress -From $MailFrom -Subject "$MailSubject $Succi/$($Vms.count) VMs Successful" -Body $MailBody -SmtpServer $SmtpServer -Port $SmtpPort
}
}
}
else {
Write-Host -ForegroundColor Red -BackgroundColor Black -Object " There's no log file to email."
}
}
## End of Email block
## Webhook block
If ($Webh)
{
$WebHookUri = Get-Content $Webh
$WebHookArr = @()
$title = "Hyper-V Backup Utility $Succi/$($Vms.count) VMs Successful"
$description = Get-Content -Path $Log | Out-String
$WebHookObj = [PSCustomObject]@{
title = $title
description = $description
}
$WebHookArr += $WebHookObj
$payload = [PSCustomObject]@{
embeds = $WebHookArr
}
Invoke-RestMethod -Uri $WebHookUri -Body ($payload | ConvertTo-Json -Depth 2) -Method Post -ContentType 'application/json'
}
}
## Function for Update Check
Function UpdateCheck()
{
$ScriptVersion = "24.08.29"
$RawSource = "https://raw.githubusercontent.com/Digressive/HyperV-Backup-Utility/master/Hyper-V-Backup.ps1"
try {
$SourceCheck = Invoke-RestMethod -uri "$RawSource"
$VerCheck = $SourceCheck -split '\n' | Select-String -Pattern ".VERSION $ScriptVersion" -SimpleMatch -CaseSensitive -Quiet
If ($VerCheck -ne $True)
{
Write-Log -Type Conf -Evt "-- There is an update available! --"
}
}
catch {
}
}
##
## Start of backup Options functions
##
Function CompressFiles7zip($CompressDateFormat,$CompressDir,$CompressFileName)
{
$7zipOutput = $null
$7zipTestOutput = $null
$CompressFileNameSet = $CompressFileName+$CompressDateFormat
## Makeshift error catch for 7zip in PowerShell
$7zipOutput = & "$env:programfiles\7-Zip\7z.exe" $SzSwSplit -bso0 a ("$CompressDir\$CompressFileNameSet") "$CompressDir\$Vm\*" *>&1
If ($7zipOutput -match "ERROR:")
{
Write-Log -Type Err -Evt "(VM:$Vm) 7zip encountered an error creating the archive"
Set-Variable -Name 'BackupSucc' -Value $false -Scope 2
}
else {
Set-Variable -Name 'BackupSucc' -Value $true -Scope 2
}
$GetTheFile = Get-ChildItem -Path $CompressDir -File -Filter "$CompressFileNameSet.*"
$archivePassword = if ($null -ne $SzSwitches)
{
$password = ($SzSwitches -split ',') | Where-Object { $_ -match '^-p(.*)' } | ForEach-Object { $matches[1] }
if ($password -ne "" -and $null -ne $password)
{
"-p$password"
}
else {""}
}
else {""}
$7zipTestOutput = & "$env:programfiles\7-Zip\7z.exe" $archivePassword -bso0 t $($GetTheFile.FullName) *>&1
If ($7zipTestOutput -match "ERROR:")
{
Write-Log -Type Err -Evt "(VM:$Vm) 7zip encountered an error verifying the archive"
Set-Variable -Name 'BackupSucc' -Value $false -Scope 2
}
else {
Set-Variable -Name 'BackupSucc' -Value $true -Scope 2
}
}
Function CompressFilesWin($CompressDateFormat,$CompressDir,$CompressFileName)
{
Add-Type -AssemblyName "system.io.compression.filesystem"
$CompressFileNameSet = $CompressFileName+$CompressDateFormat
## Windows compression with shortdate
try {
[io.compression.zipfile]::CreateFromDirectory("$CompressDir\$Vm", ("$CompressDir\$CompressFileNameSet.zip"))
Set-Variable -Name 'BackupSucc' -Value $true -Scope 2
}
catch {
$_.Exception.Message | Write-Log -Type Err -Evt "(VM:$Vm) $_"
Set-Variable -Name 'BackupSucc' -Value $false -Scope 2
}
}
Function ShortDateFileNo($ShortDateDir,$ShortDateFilePat)
{
Write-Log -Type Info -Evt "(VM:$Vm) Backup $VmFixed-$(Get-DateShort) already exists, appending number"
$i = 1
$ShortDateNN = ("$VmFixed-$(Get-DateShort)-{0:D3}" -f $i++)+$ShortDateFilePat
$ShortDateExistT = Test-Path -Path $ShortDateDir\$ShortDateNN
If ($ShortDateExistT)
{
do {
$ShortDateNN = ("$VmFixed-$(Get-DateShort)-{0:D3}" -f $i++)+$ShortDateFilePat
$ShortDateExistT = Test-Path -Path $ShortDateDir\$ShortDateNN
} until ($ShortDateExistT -eq $false)
}
If ($Compress)
{
If ($Sz -eq $True -AND $7zT -eq $True)
{
If ($SzSwSplit -like "-v*")
{
## 7-zip compression with shortdate configured and a number appended.
$ShortDateNN7zFix = $ShortDateNN -replace '[.*]'
CompressFiles7zip -CompressDir $ShortDateDir -CompressFileName $ShortDateNN7zFix
}
else {
## 7-zip compression with shortdate configured and a number appended.
$ShortDateNN7zFix = $ShortDateNN -replace '[.*]'
CompressFiles7zip -CompressDir $ShortDateDir -CompressFileName $ShortDateNN7zFix
}
}
else {
## Windows compression with shortdate configured and a number appended.
$ShortDateNNWinFix = $ShortDateNN.TrimEnd(".zip")
CompressFilesWin -CompressDir $ShortDateDir -CompressFileName $ShortDateNNWinFix
}
}
else {
try {
Get-ChildItem -Path $ShortDateDir -Filter $Vm -Directory | Rename-Item -NewName ("$ShortDateDir\$ShortDateNN")
}
catch {
$_.Exception.Message | Write-Log -Type Err -Evt "(VM:$Vm) $_"
}
If ($WorkDir -ne $Backup)
{
## Moving backup folder with shortdate and renaming with number appended.
try {
Get-ChildItem -Path $WorkDir -Filter "$VmFixed-*-*-*" -Directory | Move-Item -Destination $ShortDateDir\$ShortDateNN -ErrorAction 'Stop'
}
catch {
$_.Exception.Message | Write-Log -Type Err -Evt "(VM:$Vm) $_"
Set-Variable -Name 'BackupSucc' -Value $false -Scope 1
}
}
}
}
Function ReportRemove($RemoveDir,$RemoveFilePat,$RemoveDirOpt,$RemoveHistory)
{
If ($RemoveDirOpt)
{
$RemoveDirOptSet = @{Directory = $true}
}
else {
$RemoveDirOptSet = @{Directory = $false}
}
$RemoveFullPath = $VmFixed+$RemoveFilePat
## report old files to remove
If ($LogPathUsr)
{
If (Test-Path -Path $RemoveDir)
{
Get-ChildItem -Path $RemoveDir -Filter $RemoveFullPath @RemoveDirOptSet | Where-Object CreationTime -lt (Get-Date).AddDays(-$RemoveHistory) | Select-Object -Property Name, CreationTime | Format-Table -HideTableHeaders | Out-File -Append $Log -Encoding ASCII
}
}
## remove old files
If (Test-Path -Path $RemoveDir)
{
Get-ChildItem -Path $RemoveDir -Filter $RemoveFullPath @RemoveDirOptSet | Where-Object CreationTime -lt (Get-Date).AddDays(-$RemoveHistory) | Remove-Item -Recurse -Force
}
}
Function RemoveOld()
{
## Remove previous backup folders. -Keep switch and -Compress switch are NOT configured.
If ($Null -eq $History -And $Compress -eq $False)
{
Write-Log -Type Info -Evt "(VM:$Vm) Removing previous backups"
## Remove all previous backup folders
If ($ShortDate)
{
ReportRemove -RemoveDir $WorkDir -RemoveFilePat "-*-*-*" -RemoveDirOpt $true -RemoveHistory $null
}
else {
ReportRemove -RemoveDir $WorkDir -RemoveFilePat "-*-*-*_*-*-*" -RemoveDirOpt $true -RemoveHistory $null
}
## If working directory is configured by user, remove all previous backup folders
If ($WorkDir -ne $Backup)
{
## Make sure the backup directory exists.
If (Test-Path -Path $Backup)
{
If ($ShortDate)
{
ReportRemove -RemoveDir $Backup -RemoveFilePat "-*-*-*" -RemoveDirOpt $true -RemoveHistory $null
}
else {
ReportRemove -RemoveDir $Backup -RemoveFilePat "-*-*-*_*-*-*" -RemoveDirOpt $true -RemoveHistory $null
}
}
}
}
## Remove previous backup folders older than X configured days. -Keep switch is configured and -Compress switch is NOT.
else {
If ($Compress -eq $False)
{
Write-Log -Type Info -Evt "(VM:$Vm) Removing backup folders older than: $History days"
## Remove previous backup folders older than the configured number of days.
If ($ShortDate)
{
ReportRemove -RemoveDir $WorkDir -RemoveFilePat "-*-*-*" -RemoveDirOpt $true -RemoveHistory $History
}
else {
ReportRemove -RemoveDir $WorkDir -RemoveFilePat "-*-*-*_*-*-*" -RemoveDirOpt $true -RemoveHistory $History
}
## If working directory is configured by user, remove all previous backup folders older than X configured days.
If ($WorkDir -ne $Backup)
{
## Make sure the backup directory exists.
If (Test-Path -Path $Backup)
{
If ($ShortDate)
{
ReportRemove -RemoveDir $Backup -RemoveFilePat "-*-*-*" -RemoveDirOpt $true -RemoveHistory $History
}
else {
ReportRemove -RemoveDir $Backup -RemoveFilePat "-*-*-*_*-*-*" -RemoveDirOpt $true -RemoveHistory $History
}
}
}
}
}
## Remove ALL previous backup files. -Keep switch is NOT configured and -Compress switch IS.
If ($Compress)
{
If ($Null -eq $History)
{
Write-Log -Type Info -Evt "(VM:$Vm) Removing all previous compressed backups"
## Remove all previous compressed backups
If ($ShortDate)
{
Remove-Item "$WorkDir\$VmFixed-*-*-*.*" -Force
}
else {
Remove-Item "$WorkDir\$VmFixed-*-*-*_*-*-*.*" -Force
}
## If working directory is configured by user, remove all previous backup files.
If ($WorkDir -ne $Backup)
{
## Make sure the backup directory exists.
If (Test-Path -Path $Backup)
{
If ($ShortDate)
{
Remove-Item "$Backup\$VmFixed-*-*-*.*" -Force
}
else {
Remove-Item "$Backup\$VmFixed-*-*-*_*-*-*.*" -Force
}
}
}
}
## Remove previous backup files older than X days. -Keep and -Compress switch are configured.
else {
Write-Log -Type Info -Evt "(VM:$Vm) Removing compressed backups older than: $History days"
## Remove previous compressed backups older than the configured number of days.
If ($ShortDate)
{
ReportRemove -RemoveDir $WorkDir -RemoveFilePat "-*-*-*.*" -RemoveDirOpt $false -RemoveHistory $History
}
else {
ReportRemove -RemoveDir $WorkDir -RemoveFilePat "-*-*-*_*-*-*.*" -RemoveDirOpt $false -RemoveHistory $History
}
## If working directory is configured by user, remove previous backup files older than X days.
If ($WorkDir -ne $Backup)
{
## Make sure the backup directory exists.
If (Test-Path -Path $Backup)
{
If ($ShortDate)
{
ReportRemove -RemoveDir $Backup -RemoveFilePat "-*-*-*.*" -RemoveDirOpt $false -RemoveHistory $History
}
else {
ReportRemove -RemoveDir $Backup -RemoveFilePat "-*-*-*_*-*-*.*" -RemoveDirOpt $false -RemoveHistory $History
}
}
}
}
}
}
Function OptionsRun()
{
If ($Compress)
{
## If -Compress and -Sz are configured AND 7-zip is installed - compress the backup folder, if it isn't fallback to Windows compression.
If ($Sz -eq $True -AND $7zT -eq $True)
{
Write-Log -Type Info -Evt "(VM:$Vm) Compressing backup using 7-Zip compression"
## If -Shortdate is configured, test for an old backup file, if true append a number (and increase the number if file still exists) before the file extension.
If ($ShortDate)
{
## If using 7zip's split file feature with short dates, we need to handle the files a little differently.
If ($SzSwSplit -like "-v*")
{
$ShortDateT = Test-Path -Path ("$WorkDir\$VmFixed-$(Get-DateShort).*.*")
If ($ShortDateT)
{
ShortDateFileNo -ShortDateDir $WorkDir -ShortDateFilePat ".*.*"
}
else {
CompressFiles7zip(Get-DateShort) -CompressDir $WorkDir -CompressFileName "$VmFixed-$CompressDateFormat"
}
}
else
{
$ShortDateT = Test-Path -Path ("$WorkDir\$VmFixed-$(Get-DateShort).*")
If ($ShortDateT)
{
ShortDateFileNo -ShortDateDir $WorkDir -ShortDateFilePat ".*"
}
CompressFiles7zip(Get-DateShort) -CompressDir $WorkDir -CompressFileName "$VmFixed-$CompressDateFormat"
}
}
else {
CompressFiles7zip(Get-DateLong) -CompressDir $WorkDir -CompressFileName "$VmFixed-$CompressDateFormat"
}
}
## Compress the backup folder using Windows compression. -Compress is configured, -Sz switch is not, or it is and 7-zip isn't detected.
## This is also the "fallback" windows compression code.
else {
Write-Log -Type Info -Evt "(VM:$Vm) Compressing backup using Windows compression"
If ($ShortDate)
{
$ShortDateT = Test-Path -Path ("$WorkDir\$VmFixed-$(Get-DateShort).zip")
If ($ShortDateT)
{
ShortDateFileNo -ShortDateDir $WorkDir -ShortDateFilePat ".zip"
}
else {
CompressFilesWin(Get-DateShort) -CompressDir $WorkDir -CompressFileName "$VmFixed-$CompressDateFormat"
}
}
else {
CompressFilesWin(Get-DateLong) -CompressDir $WorkDir -CompressFileName "$VmFixed-$CompressDateFormat"
}
}
## After being compressed, if success remove the VMs export folder.
If ($BackupSucc)
{
Get-ChildItem -Path $WorkDir -Filter "$Vm" -Directory | Remove-Item -Recurse -Force
}
else {
Write-Log -Type Err -Evt "(VM:$Vm) Compressing backup failed."
Set-Variable -Name 'BackupSucc' -Value $false -Scope 1
}
## If working directory has been configured by the user, move the compressed backup to the backup folder and rename to include the date.
If ($WorkDir -ne $Backup)
{
## Make sure the backup directory exists.
If ((Test-Path -Path $Backup) -eq $False)
{
Write-Log -Type Info -Evt "Backup directory $Backup doesn't exist. Creating it."
New-Item $Backup -ItemType Directory -Force | Out-Null
}
## Get the exact name of the backup file and append numbers onto the filename, keeping the extension intact.
## This contains special code to do the shortDate renaming with any 7-zip split files.
If ($ShortDate)
{
If ($SzSwSplit -like "-v*")
{
$SzSplitFiles = Get-ChildItem -Path ("$WorkDir\$VmFixed-$(Get-DateShort).*.*") -File
ForEach ($SplitFile in $SzSplitFiles) {
$ShortDateT = Test-Path -Path "$Backup\$($SplitFile.name)"
$split7zArray = $SplitFile.basename.Split(".")
$archType = $split7zArray[1]
If ($ShortDateT)
{
Write-Log -Type Info -Evt "(VM:$Vm) File: $($SplitFile.name) already exists, appending number"
$FileExist = Get-ChildItem -Path "$Backup\$($SplitFile.name)" -File
$i = 1
$ShortDateNN = ("$VmFixed-$(Get-DateShort)-{0:D3}" -f $i++ + "." + $archType + $FileExist.Extension)
$ShortDateExistT = Test-Path -Path $Backup\$ShortDateNN
If ($ShortDateExistT)
{
do {
$ShortDateNN = ("$VmFixed-$(Get-DateShort)-{0:D3}" -f $i++ + "." + $archType + $FileExist.Extension)
$ShortDateExistT = Test-Path -Path $Backup\$ShortDateNN
} until ($ShortDateExistT -eq $false)
}
try {
Get-ChildItem -Path $SplitFile | Move-Item -Destination $Backup\$ShortDateNN -ErrorAction 'Stop'
}
catch {
$_.Exception.Message | Write-Log -Type Err -Evt "(VM:$Vm) $_"
Set-Variable -Name 'BackupSucc' -Value $false -Scope 1
}
}
else {
try {
Get-ChildItem -Path $SplitFile | Move-Item -Destination $Backup\$ShortDateNN -ErrorAction 'Stop'
}
catch {
$_.Exception.Message | Write-Log -Type Err -Evt "(VM:$Vm) $_"
Set-Variable -Name 'BackupSucc' -Value $false -Scope 1
}
}
}
}
else {
$BackupFile = Get-ChildItem -Path ("$WorkDir\$VmFixed-$(Get-DateShort).*") -File
$BackupFileN = $BackupFile.name
$BackupFileNSplit = $BackupFileN.split(".")
$ShortDateT = Test-Path -Path $Backup\$BackupFileN
If ($ShortDateT)
{
Write-Log -Type Info -Evt "(VM:$Vm) File: $BackupFileN already exists, appending number"
$FileExist = Get-ChildItem -Path $BackupFile -File
$i = 1
If ($Null -eq $BackupFileNSplit[2])
{
$ShortDateNN = ("$VmFixed-$(Get-DateShort)-{0:D3}" -f $i++ + $FileExist.Extension)
$ShortDateExistT = Test-Path -Path $Backup\$ShortDateNN
}
else {
$ShortDateNN = ("$VmFixed-$(Get-DateShort)-{0:D3}" -f $i++ + "." + $BackupFileNSplit[1] + $FileExist.Extension)
$ShortDateExistT = Test-Path -Path $Backup\$ShortDateNN
}
If ($ShortDateExistT)
{
If ($Null -eq $BackupFileNSplit[2])
{
do {
$ShortDateNN = ("$VmFixed-$(Get-DateShort)-{0:D3}" -f $i++ + $FileExist.Extension)
$ShortDateExistT = Test-Path -Path $Backup\$ShortDateNN
} until ($ShortDateExistT -eq $false)
}
else {
do {
$ShortDateNN = ("$VmFixed-$(Get-DateShort)-{0:D3}" -f $i++ + "." + $BackupFileNSplit[1] + $FileExist.Extension)
$ShortDateExistT = Test-Path -Path $Backup\$ShortDateNN
} until ($ShortDateExistT -eq $false)
}
}
## Move with shortdate and appended number
try {
Get-ChildItem -Path $BackupFile | Move-Item -Destination $Backup\$ShortDateNN -ErrorAction 'Stop'
}
catch {
$_.Exception.Message | Write-Log -Type Err -Evt "(VM:$Vm) $_"
Set-Variable -Name 'BackupSucc' -Value $false -Scope 1
}
}
## Move with shortdate
try {
Get-ChildItem -Path $WorkDir -Filter "$VmFixed-*-*-*.*" | Move-Item -Destination $Backup -ErrorAction 'Stop'
}
catch {
$_.Exception.Message | Write-Log -Type Err -Evt "(VM:$Vm) $_"
Set-Variable -Name 'BackupSucc' -Value $false -Scope 1
}
}
}
## Move with long date
else {
try {
Get-ChildItem -Path $WorkDir -Filter "$VmFixed-*-*-*_*-*-*.*" | Move-Item -Destination $Backup -ErrorAction 'Stop'
}
catch {
$_.Exception.Message | Write-Log -Type Err -Evt "(VM:$Vm) $_"
Set-Variable -Name 'BackupSucc' -Value $false -Scope 1
}
}
}
}
## -Compress switch is NOT configured and the -Keep switch is configured.
## Rename the export of each VM to include the date.
else {
If ($ShortDate)
{
$ShortDateT = Test-Path -Path ("$WorkDir\$VmFixed-$(Get-DateShort)")
If ($ShortDateT)
{
ShortDateFileNo -ShortDateDir $WorkDir -ShortDateFilePat $null
}
try {
Get-ChildItem -Path $WorkDir -Filter $Vm -Directory | Rename-Item -NewName ("$WorkDir\$VmFixed-$(Get-DateShort)")
}
catch {
$_.Exception.Message | Write-Log -Type Err -Evt "(VM:$Vm) $_"
Set-Variable -Name 'BackupSucc' -Value $false -Scope 1
}
}
else {
try {
Get-ChildItem -Path $WorkDir -Filter $Vm -Directory | Rename-Item -NewName ("$WorkDir\$VmFixed-$(Get-DateLong)")
}
catch {
$_.Exception.Message | Write-Log -Type Err -Evt "(VM:$Vm) $_"
Set-Variable -Name 'BackupSucc' -Value $false -Scope 1
}
}
## If working directory has been configured by the user, move the backup to the backup folder and rename to include the date.
If ($WorkDir -ne $Backup)
{
## Make sure the backup directory exists.
If ((Test-Path -Path $Backup) -eq $False)
{
Write-Log -Type Info -Evt "Backup directory $Backup doesn't exist. Creating it."
New-Item $Backup -ItemType Directory -Force | Out-Null
}
If ($ShortDate)
{
$ShortDateT = Test-Path -Path ("$Backup\$VmFixed-$(Get-DateShort)")
If ($ShortDateT)
{
ShortDateFileNo -ShortDateDir $Backup -ShortDateFilePat $null
}
## Moving backup folder with shortdate
try {
Get-ChildItem -Path $WorkDir -Filter "$VmFixed-*-*-*" -Directory | Move-Item -Destination ("$Backup\$VmFixed-$(Get-DateShort)") -ErrorAction 'Stop'
}
catch {
$_.Exception.Message | Write-Log -Type Err -Evt "(VM:$Vm) $_"
Set-Variable -Name 'BackupSucc' -Value $false -Scope 1
}
}
## Moving backup folder with longdate
else {
try {
Get-ChildItem -Path $WorkDir -Filter "$VmFixed-*-*-*_*-*-*" -Directory | Move-Item -Destination ("$Backup\$VmFixed-$(Get-DateLong)") -ErrorAction 'Stop'
}
catch {
$_.Exception.Message | Write-Log -Type Err -Evt "(VM:$Vm) $_"
Set-Variable -Name 'BackupSucc' -Value $false -Scope 1
}
}
}
}
}
Function CredsGen()
{
$credsGen = Get-Credential
$credsGen.Password | ConvertFrom-SecureString | Set-Content $PSScriptRoot\$MkCr
If ($null -eq $credsGen)
{
Write-Log -Type Err -Evt "No credentials were specified."
}
else {
Write-Log -Type Succ -Evt "Credentials file created: $PSScriptRoot\$MkCr"
}
}
##
## End of backup Options functions
##
## getting Windows Version info
$OSVMaj = [environment]::OSVersion.Version | Select-Object -expand major
$OSVMin = [environment]::OSVersion.Version | Select-Object -expand minor
$OSVBui = [environment]::OSVersion.Version | Select-Object -expand build
$OSV = "$OSVMaj" + "." + "$OSVMin" + "." + "$OSVBui"
## Run make creds function to generate an encrypted password file
If ($MkCr)
{
CredsGen
Exit
}
If ($null -eq $BackupUsr)
{
Write-Log -Type Err -Evt "You must specify -BackupTo [path]."
Exit
}
else {
## Test for Hyper-V feature installed on local machine.
## Old version of Win Serv have a different service name.