Why doesn't File History backup Skydrive

crg

New Member
Messages
2
I really like the way Skydrive synchronises my folders between my work and home laptops and I have my Skydrive docs available offline. But why is Skydrive excluded from the list of libraries that are backed up by File History. I want to be able to back my docs up onto an external hard drive. Is there no way of doing this? Same with Backup on Windows 7, Skydrive seems to be excluded. Any solutions? thanks, C
 

My Computer

System One

  • OS
    8.1
    Computer type
    Laptop
    System Manufacturer/Model
    lenovo yoga 13
    CPU
    core 1.5
    Memory
    125gb
    Browser
    IE
    Antivirus
    AVG
Just use another program to backup your skydrive map. I use 'SyncBack Free' for this.

But make sure your SkyDrive map is set to have all the files offline, else you get an error message when you try to make a backup.
 

My Computer

System One

  • OS
    Windows 8.1 Pro 32/64
    Computer type
    PC/Desktop
Good idea, that worked. But why have Microsoft built this in?
 

My Computer

System One

  • OS
    8.1
    Computer type
    Laptop
    System Manufacturer/Model
    lenovo yoga 13
    CPU
    core 1.5
    Memory
    125gb
    Browser
    IE
    Antivirus
    AVG
It was there in Windows 8 but removed in 8.1. I can't imagine why as if you delete something by mistake it will delete it from skydrive also making it useless for backup.

I use task scheduler to run this batch file every hour - it works fine. If you schedule it as SYSTEM it backs up Skydrive for all users.

Code:
@echo off
set backupdrive=E:
set users=%SystemDrive%\Users
   
if not exist %backupdrive%\FileHistory goto End
for /d %%x in (%users%\*) do (
  call:FnCopy %%~nxx 
  )
  
:FnCopy
  if not exist %users%\%1\SkyDrive\ goto :EOF
  if not exist %backupdrive%\FileHistory\%1\SkyDrive MD %backupdrive%\FileHistory\%1\SkyDrive 
  robocopy %users%\%1\SkyDrive %backupdrive%\FileHistory\%1\SkyDrive /b /e /r:0 /w:0 /copyall /mt /log:%backupdrive%\FileHistory\%1\SkyDriveLog.log   
  goto :EOF
  
:End
 

My Computer

System One

  • OS
    Windows 10 Pro Prieview x64
    Computer type
    Laptop
    System Manufacturer/Model
    MacBook Pro Core2Duo
    CPU
    T7600
    Memory
    3
    Graphics Card(s)
    ATI Radeon X1600
    Monitor(s) Displays
    Internal
    Screen Resolution
    1440 x 800
    Hard Drives
    40GB
    Keyboard
    Apple
    Mouse
    Apple
    Internet Speed
    Varies
    Browser
    Various
    Antivirus
    Defender
Back
Top