OHCubsFan
Still Checking the Forum Out
Registered:1491924477 Posts: 2
Posted 1491924811
Reply with quote
#1
I was a subscriber to Mark's newsletter back in the day and really enjoyed it. One of the takeaways I got was a batch file to perform the backup in the subject - I had one I ran daily for my user directory, and another two I ran monthly to backup my various media and photos. Sadly, my SSD drive died the other day and I didn't have a copy of the batch files themselves anywhere. I'm wondering if such a thing still exists, or if something even better has been created? My new system runs Win10, and I had the batch files configured to move my backups to offline storage so I could keep historical backups. So, any help on this would be greatly appreciated! Thank you!
wobble_wobble
Associate Troublemaker Apprentice
Registered:1451575798 Posts: 873
Posted 1491951972
· Edited
Reply with quote
#2
I'll always advise a commercial product and this one is free. Veeam Endpoint Protection does a lot for free.https://www.veeam.com/endpoint-backup-free.html Windows 10 has a backup solution baked in that also does image backups I've not used it, but it is in there. You can search it from the Windows 10 menu. Its been spoken about herehttp://newforum.minasi.com/post/win-10-backup-8393494?highlight=backup&pid=1294652506 If you want some code to zip some files, this is some crude powershell I use to move reports around the place
Code:
# file Move # # Zip all reports # Delete all reports # Move Zip report from Reporting Folder to Archive Folder # Zip a file in Powershell $ZipFileName = "Reports-{0:yyyyMMdd-HHmm}.zip" -f (Get-Date) $Source = "E:\Reporting\Reports" # Source Folder $Destination ="E:\Archive\Reports\$ZipFileName" # Destination folder Add-Type -assembly "system.io.compression.filesystem" [io.compression.zipfile]::CreateFromDirectory($Source, $Destination) # Delete Files in Source Folder cd $Source remove-item *.xls #remove-item *.txt #remove-item *.7z
__________________ Have you tried turning it off and walking away? The next person can fix it!New to the forum? Read this
Creacon
New Friend (or an Old Friend who Built a New Account)
Registered:1452185718 Posts: 30
Posted 1492366168
Reply with quote
#3
"Windows 10 has a backup solution baked in that also does image backups I've not used it, but it is in there. You can search it from the Windows 10 menu ." I've used it often in the past; it does decent job and is easy to restore files or complete system. Unfortunately, however, it DOES NOT provide a "Bare Metal" capability, consequently a full restore can only be performed on identical hardware. This can be a real problem for recovering from a disaster. I'm now using Veeam, as recommended by wobble_wobble, which does, in fact, provide that capability. The product is easy to use, provides a universal restore capability, and, best of all, it's free. I now recommend it very highly; thanks wobble_wobble!
__________________ Capt. Dinosaur
OHCubsFan
Still Checking the Forum Out
Registered:1491924477 Posts: 2
Posted 1492377860
Reply with quote
#4
With Veeam, can you exclude directories? Since the boot drive is an SSD, I not only have my OS there, but I store game files (Steam, etc) as well. I don't need those backed up as those are easily reinstalled. Would hate to waste backup space with them...
Creacon
New Friend (or an Old Friend who Built a New Account)
Registered:1452185718 Posts: 30
Posted 1492471689
Reply with quote
#5
I Haven't tried it, but I'd be very surprised if you couldn't. Personally I prefer to do full system backups using two separate HDDs that I rotate weekly between my on site safe and my bank safe deposit box. I've found that a full restore is a whole lot simpler and quicker to restore (about 10min on a TB drive) than hunting around the backup for specific files to restore, although I have done that on a few rare occasions.
__________________ Capt. Dinosaur
wobble_wobble
Associate Troublemaker Apprentice
Registered:1451575798 Posts: 873
Posted 1492521742
Reply with quote
#6
Quote:
Originally Posted by OHCubsFan With Veeam, can you exclude directories? Since the boot drive is an SSD, I not only have my OS there, but I store game files (Steam, etc) as well. I don't need those backed up as those are easily reinstalled. Would hate to waste backup space with them...
Yes you can select what you backup. The backup can run slower because of that. But as stated and something I'll agree with, backup the whole machine, its easier/ safer. You may at a later stage add in a new folder, and forget to back the new folder. This way you get the lot.
__________________ Have you tried turning it off and walking away? The next person can fix it!New to the forum? Read this