ML
    • Recent
    • Categories
    • Tags
    • Popular
    • Users
    • Groups
    • Register
    • Login

    Crashplan vs Backblaze in 2018

    IT Discussion
    backblaze backup disaster recovery crashplan
    8
    27
    2.4k
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • DonahueD
      Donahue @JaredBusch
      last edited by

      @JaredBusch said in Crashplan vs Backblaze in 2018:

      @dafyre said in Crashplan vs Backblaze in 2018:

      @black3dynamite said in Crashplan vs Backblaze in 2018:

      @dafyre said in Crashplan vs Backblaze in 2018:

      @black3dynamite said in Crashplan vs Backblaze in 2018:

      @Markferron said in Crashplan vs Backblaze in 2018:

      @DustinB3403 said in Crashplan vs Backblaze in 2018:

      Can I ask why you are protecting user devices though? Generally these have very little on them and through simple policy can everything be saved on your servers or cloud and thus don't need backup.

      I would really like to do this. We have onedrive available for all of our users and I was thinking of coming up with some sort of system that just uses their onedrive as the primary source of their homefolder.

      That's how I do it but we are using Nextcloud.

      All users root folders under their user profile is linked to the actual folders in C:\Users\john.doe\Nextcloud{Desktop, Documents, etc...}. And the data is synced back to the Nextcloud server and that server is backed up.

      How do you go about doing that? Editing the location of Desktop, Documents, etc... ?

      Use Junction Points. Its like using symbolic links in Linux.

      Oh... Duh, lol. Thanks.

      I'm just trying to figure out how that would work if you have to do more than a few client machines at a time.

      Something like this. It is not ready for prime time, but was my starting point last week when setting up a new desktop.

      $User = Read-Host "Enter UserName"
      Remove-Item -Path "C:\Users\$User\Desktop"
      New-Item -ItemType Junction -Path "C:\Users\$User" -Name "Desktop" -Target "C:\Users\$User\Nextcloud\Desktop" -Force
      Remove-Item -Path "C:\Users\$User\Documents"
      New-Item -ItemType Junction -Path "C:\Users\$User" -Name "Documents" -Target "C:\Users\$User\Nextcloud\Documents" -Force
      Remove-Item -Path "C:\Users\$User\Downloads"
      New-Item -ItemType Junction -Path "C:\Users\$User" -Name "Downloads" -Target "C:\Users\$User\Nextcloud\Downloads" -Force
      Remove-Item -Path "C:\Users\$User\Favorites"
      New-Item -ItemType Junction -Path "C:\Users\$User" -Name "Favorites" -Target "C:\Users\$User\Nextcloud\Favorites" -Force
      Remove-Item -Path "C:\Users\$User\Music"
      New-Item -ItemType Junction -Path "C:\Users\$User" -Name "Music" -Target "C:\Users\$User\Nextcloud\Music" -Force
      Remove-Item -Path "C:\Users\$User\Pictures"
      New-Item -ItemType Junction -Path "C:\Users\$User" -Name "Pictures" -Target "C:\Users\$User\Nextcloud\Pictures" -Force
      Remove-Item -Path "C:\Users\$User\Videos"
      New-Item -ItemType Junction -Path "C:\Users\$User" -Name "Videos" -Target "C:\Users\$User\Nextcloud\Videos" -Force
      

      where would this be run from, the DC?

      JaredBuschJ dafyreD 2 Replies Last reply Reply Quote 0
      • JaredBuschJ
        JaredBusch @Donahue
        last edited by

        @Donahue said in Crashplan vs Backblaze in 2018:

        @JaredBusch said in Crashplan vs Backblaze in 2018:

        @dafyre said in Crashplan vs Backblaze in 2018:

        @black3dynamite said in Crashplan vs Backblaze in 2018:

        @dafyre said in Crashplan vs Backblaze in 2018:

        @black3dynamite said in Crashplan vs Backblaze in 2018:

        @Markferron said in Crashplan vs Backblaze in 2018:

        @DustinB3403 said in Crashplan vs Backblaze in 2018:

        Can I ask why you are protecting user devices though? Generally these have very little on them and through simple policy can everything be saved on your servers or cloud and thus don't need backup.

        I would really like to do this. We have onedrive available for all of our users and I was thinking of coming up with some sort of system that just uses their onedrive as the primary source of their homefolder.

        That's how I do it but we are using Nextcloud.

        All users root folders under their user profile is linked to the actual folders in C:\Users\john.doe\Nextcloud{Desktop, Documents, etc...}. And the data is synced back to the Nextcloud server and that server is backed up.

        How do you go about doing that? Editing the location of Desktop, Documents, etc... ?

        Use Junction Points. Its like using symbolic links in Linux.

        Oh... Duh, lol. Thanks.

        I'm just trying to figure out how that would work if you have to do more than a few client machines at a time.

        Something like this. It is not ready for prime time, but was my starting point last week when setting up a new desktop.

        $User = Read-Host "Enter UserName"
        Remove-Item -Path "C:\Users\$User\Desktop"
        New-Item -ItemType Junction -Path "C:\Users\$User" -Name "Desktop" -Target "C:\Users\$User\Nextcloud\Desktop" -Force
        Remove-Item -Path "C:\Users\$User\Documents"
        New-Item -ItemType Junction -Path "C:\Users\$User" -Name "Documents" -Target "C:\Users\$User\Nextcloud\Documents" -Force
        Remove-Item -Path "C:\Users\$User\Downloads"
        New-Item -ItemType Junction -Path "C:\Users\$User" -Name "Downloads" -Target "C:\Users\$User\Nextcloud\Downloads" -Force
        Remove-Item -Path "C:\Users\$User\Favorites"
        New-Item -ItemType Junction -Path "C:\Users\$User" -Name "Favorites" -Target "C:\Users\$User\Nextcloud\Favorites" -Force
        Remove-Item -Path "C:\Users\$User\Music"
        New-Item -ItemType Junction -Path "C:\Users\$User" -Name "Music" -Target "C:\Users\$User\Nextcloud\Music" -Force
        Remove-Item -Path "C:\Users\$User\Pictures"
        New-Item -ItemType Junction -Path "C:\Users\$User" -Name "Pictures" -Target "C:\Users\$User\Nextcloud\Pictures" -Force
        Remove-Item -Path "C:\Users\$User\Videos"
        New-Item -ItemType Junction -Path "C:\Users\$User" -Name "Videos" -Target "C:\Users\$User\Nextcloud\Videos" -Force
        

        where would this be run from, the DC?

        I'm looking at having it hosted someplace and calling it from an invoke command.

        Set-ExecutionPolicy Bypass -Scope Process -Force; iex ((New-Object System.Net.WebClient).DownloadString('https://domain.com/setupuserfolders.ps1'))
        
        1 Reply Last reply Reply Quote 1
        • dafyreD
          dafyre @Donahue
          last edited by

          @Donahue said in Crashplan vs Backblaze in 2018:

          @JaredBusch said in Crashplan vs Backblaze in 2018:

          @dafyre said in Crashplan vs Backblaze in 2018:

          @black3dynamite said in Crashplan vs Backblaze in 2018:

          @dafyre said in Crashplan vs Backblaze in 2018:

          @black3dynamite said in Crashplan vs Backblaze in 2018:

          @Markferron said in Crashplan vs Backblaze in 2018:

          @DustinB3403 said in Crashplan vs Backblaze in 2018:

          Can I ask why you are protecting user devices though? Generally these have very little on them and through simple policy can everything be saved on your servers or cloud and thus don't need backup.

          I would really like to do this. We have onedrive available for all of our users and I was thinking of coming up with some sort of system that just uses their onedrive as the primary source of their homefolder.

          That's how I do it but we are using Nextcloud.

          All users root folders under their user profile is linked to the actual folders in C:\Users\john.doe\Nextcloud{Desktop, Documents, etc...}. And the data is synced back to the Nextcloud server and that server is backed up.

          How do you go about doing that? Editing the location of Desktop, Documents, etc... ?

          Use Junction Points. Its like using symbolic links in Linux.

          Oh... Duh, lol. Thanks.

          I'm just trying to figure out how that would work if you have to do more than a few client machines at a time.

          Something like this. It is not ready for prime time, but was my starting point last week when setting up a new desktop.

          $User = Read-Host "Enter UserName"
          Remove-Item -Path "C:\Users\$User\Desktop"
          New-Item -ItemType Junction -Path "C:\Users\$User" -Name "Desktop" -Target "C:\Users\$User\Nextcloud\Desktop" -Force
          Remove-Item -Path "C:\Users\$User\Documents"
          New-Item -ItemType Junction -Path "C:\Users\$User" -Name "Documents" -Target "C:\Users\$User\Nextcloud\Documents" -Force
          Remove-Item -Path "C:\Users\$User\Downloads"
          New-Item -ItemType Junction -Path "C:\Users\$User" -Name "Downloads" -Target "C:\Users\$User\Nextcloud\Downloads" -Force
          Remove-Item -Path "C:\Users\$User\Favorites"
          New-Item -ItemType Junction -Path "C:\Users\$User" -Name "Favorites" -Target "C:\Users\$User\Nextcloud\Favorites" -Force
          Remove-Item -Path "C:\Users\$User\Music"
          New-Item -ItemType Junction -Path "C:\Users\$User" -Name "Music" -Target "C:\Users\$User\Nextcloud\Music" -Force
          Remove-Item -Path "C:\Users\$User\Pictures"
          New-Item -ItemType Junction -Path "C:\Users\$User" -Name "Pictures" -Target "C:\Users\$User\Nextcloud\Pictures" -Force
          Remove-Item -Path "C:\Users\$User\Videos"
          New-Item -ItemType Junction -Path "C:\Users\$User" -Name "Videos" -Target "C:\Users\$User\Nextcloud\Videos" -Force
          

          where would this be run from, the DC?

          This would have to be run from the End-user's computer from the looks of it.

          JaredBuschJ 1 Reply Last reply Reply Quote 0
          • JaredBuschJ
            JaredBusch @dafyre
            last edited by

            @dafyre said in Crashplan vs Backblaze in 2018:

            @Donahue said in Crashplan vs Backblaze in 2018:

            @JaredBusch said in Crashplan vs Backblaze in 2018:

            @dafyre said in Crashplan vs Backblaze in 2018:

            @black3dynamite said in Crashplan vs Backblaze in 2018:

            @dafyre said in Crashplan vs Backblaze in 2018:

            @black3dynamite said in Crashplan vs Backblaze in 2018:

            @Markferron said in Crashplan vs Backblaze in 2018:

            @DustinB3403 said in Crashplan vs Backblaze in 2018:

            Can I ask why you are protecting user devices though? Generally these have very little on them and through simple policy can everything be saved on your servers or cloud and thus don't need backup.

            I would really like to do this. We have onedrive available for all of our users and I was thinking of coming up with some sort of system that just uses their onedrive as the primary source of their homefolder.

            That's how I do it but we are using Nextcloud.

            All users root folders under their user profile is linked to the actual folders in C:\Users\john.doe\Nextcloud{Desktop, Documents, etc...}. And the data is synced back to the Nextcloud server and that server is backed up.

            How do you go about doing that? Editing the location of Desktop, Documents, etc... ?

            Use Junction Points. Its like using symbolic links in Linux.

            Oh... Duh, lol. Thanks.

            I'm just trying to figure out how that would work if you have to do more than a few client machines at a time.

            Something like this. It is not ready for prime time, but was my starting point last week when setting up a new desktop.

            $User = Read-Host "Enter UserName"
            Remove-Item -Path "C:\Users\$User\Desktop"
            New-Item -ItemType Junction -Path "C:\Users\$User" -Name "Desktop" -Target "C:\Users\$User\Nextcloud\Desktop" -Force
            Remove-Item -Path "C:\Users\$User\Documents"
            New-Item -ItemType Junction -Path "C:\Users\$User" -Name "Documents" -Target "C:\Users\$User\Nextcloud\Documents" -Force
            Remove-Item -Path "C:\Users\$User\Downloads"
            New-Item -ItemType Junction -Path "C:\Users\$User" -Name "Downloads" -Target "C:\Users\$User\Nextcloud\Downloads" -Force
            Remove-Item -Path "C:\Users\$User\Favorites"
            New-Item -ItemType Junction -Path "C:\Users\$User" -Name "Favorites" -Target "C:\Users\$User\Nextcloud\Favorites" -Force
            Remove-Item -Path "C:\Users\$User\Music"
            New-Item -ItemType Junction -Path "C:\Users\$User" -Name "Music" -Target "C:\Users\$User\Nextcloud\Music" -Force
            Remove-Item -Path "C:\Users\$User\Pictures"
            New-Item -ItemType Junction -Path "C:\Users\$User" -Name "Pictures" -Target "C:\Users\$User\Nextcloud\Pictures" -Force
            Remove-Item -Path "C:\Users\$User\Videos"
            New-Item -ItemType Junction -Path "C:\Users\$User" -Name "Videos" -Target "C:\Users\$User\Nextcloud\Videos" -Force
            

            where would this be run from, the DC?

            This would have to be run from the End-user's computer from the looks of it.

            You are trying to screw with the end user's folders. they have to exist, and you have to have rights to them. neither of which are true of an admin account.

            dafyreD 1 Reply Last reply Reply Quote 1
            • dafyreD
              dafyre @JaredBusch
              last edited by

              @JaredBusch said in Crashplan vs Backblaze in 2018:

              @dafyre said in Crashplan vs Backblaze in 2018:

              @Donahue said in Crashplan vs Backblaze in 2018:

              @JaredBusch said in Crashplan vs Backblaze in 2018:

              @dafyre said in Crashplan vs Backblaze in 2018:

              @black3dynamite said in Crashplan vs Backblaze in 2018:

              @dafyre said in Crashplan vs Backblaze in 2018:

              @black3dynamite said in Crashplan vs Backblaze in 2018:

              @Markferron said in Crashplan vs Backblaze in 2018:

              @DustinB3403 said in Crashplan vs Backblaze in 2018:

              Can I ask why you are protecting user devices though? Generally these have very little on them and through simple policy can everything be saved on your servers or cloud and thus don't need backup.

              I would really like to do this. We have onedrive available for all of our users and I was thinking of coming up with some sort of system that just uses their onedrive as the primary source of their homefolder.

              That's how I do it but we are using Nextcloud.

              All users root folders under their user profile is linked to the actual folders in C:\Users\john.doe\Nextcloud{Desktop, Documents, etc...}. And the data is synced back to the Nextcloud server and that server is backed up.

              How do you go about doing that? Editing the location of Desktop, Documents, etc... ?

              Use Junction Points. Its like using symbolic links in Linux.

              Oh... Duh, lol. Thanks.

              I'm just trying to figure out how that would work if you have to do more than a few client machines at a time.

              Something like this. It is not ready for prime time, but was my starting point last week when setting up a new desktop.

              $User = Read-Host "Enter UserName"
              Remove-Item -Path "C:\Users\$User\Desktop"
              New-Item -ItemType Junction -Path "C:\Users\$User" -Name "Desktop" -Target "C:\Users\$User\Nextcloud\Desktop" -Force
              Remove-Item -Path "C:\Users\$User\Documents"
              New-Item -ItemType Junction -Path "C:\Users\$User" -Name "Documents" -Target "C:\Users\$User\Nextcloud\Documents" -Force
              Remove-Item -Path "C:\Users\$User\Downloads"
              New-Item -ItemType Junction -Path "C:\Users\$User" -Name "Downloads" -Target "C:\Users\$User\Nextcloud\Downloads" -Force
              Remove-Item -Path "C:\Users\$User\Favorites"
              New-Item -ItemType Junction -Path "C:\Users\$User" -Name "Favorites" -Target "C:\Users\$User\Nextcloud\Favorites" -Force
              Remove-Item -Path "C:\Users\$User\Music"
              New-Item -ItemType Junction -Path "C:\Users\$User" -Name "Music" -Target "C:\Users\$User\Nextcloud\Music" -Force
              Remove-Item -Path "C:\Users\$User\Pictures"
              New-Item -ItemType Junction -Path "C:\Users\$User" -Name "Pictures" -Target "C:\Users\$User\Nextcloud\Pictures" -Force
              Remove-Item -Path "C:\Users\$User\Videos"
              New-Item -ItemType Junction -Path "C:\Users\$User" -Name "Videos" -Target "C:\Users\$User\Nextcloud\Videos" -Force
              

              where would this be run from, the DC?

              This would have to be run from the End-user's computer from the looks of it.

              You are trying to screw with the end user's folders. they have to exist, and you have to have rights to them. neither of which are true of an admin account.

              Are you automating this -- then How?

              If you're not automating it, then why not just manually add the folders to the NextCloud client?

              JaredBuschJ 1 Reply Last reply Reply Quote 0
              • JaredBuschJ
                JaredBusch @dafyre
                last edited by

                @dafyre said in Crashplan vs Backblaze in 2018:

                @JaredBusch said in Crashplan vs Backblaze in 2018:

                @dafyre said in Crashplan vs Backblaze in 2018:

                @Donahue said in Crashplan vs Backblaze in 2018:

                @JaredBusch said in Crashplan vs Backblaze in 2018:

                @dafyre said in Crashplan vs Backblaze in 2018:

                @black3dynamite said in Crashplan vs Backblaze in 2018:

                @dafyre said in Crashplan vs Backblaze in 2018:

                @black3dynamite said in Crashplan vs Backblaze in 2018:

                @Markferron said in Crashplan vs Backblaze in 2018:

                @DustinB3403 said in Crashplan vs Backblaze in 2018:

                Can I ask why you are protecting user devices though? Generally these have very little on them and through simple policy can everything be saved on your servers or cloud and thus don't need backup.

                I would really like to do this. We have onedrive available for all of our users and I was thinking of coming up with some sort of system that just uses their onedrive as the primary source of their homefolder.

                That's how I do it but we are using Nextcloud.

                All users root folders under their user profile is linked to the actual folders in C:\Users\john.doe\Nextcloud{Desktop, Documents, etc...}. And the data is synced back to the Nextcloud server and that server is backed up.

                How do you go about doing that? Editing the location of Desktop, Documents, etc... ?

                Use Junction Points. Its like using symbolic links in Linux.

                Oh... Duh, lol. Thanks.

                I'm just trying to figure out how that would work if you have to do more than a few client machines at a time.

                Something like this. It is not ready for prime time, but was my starting point last week when setting up a new desktop.

                $User = Read-Host "Enter UserName"
                Remove-Item -Path "C:\Users\$User\Desktop"
                New-Item -ItemType Junction -Path "C:\Users\$User" -Name "Desktop" -Target "C:\Users\$User\Nextcloud\Desktop" -Force
                Remove-Item -Path "C:\Users\$User\Documents"
                New-Item -ItemType Junction -Path "C:\Users\$User" -Name "Documents" -Target "C:\Users\$User\Nextcloud\Documents" -Force
                Remove-Item -Path "C:\Users\$User\Downloads"
                New-Item -ItemType Junction -Path "C:\Users\$User" -Name "Downloads" -Target "C:\Users\$User\Nextcloud\Downloads" -Force
                Remove-Item -Path "C:\Users\$User\Favorites"
                New-Item -ItemType Junction -Path "C:\Users\$User" -Name "Favorites" -Target "C:\Users\$User\Nextcloud\Favorites" -Force
                Remove-Item -Path "C:\Users\$User\Music"
                New-Item -ItemType Junction -Path "C:\Users\$User" -Name "Music" -Target "C:\Users\$User\Nextcloud\Music" -Force
                Remove-Item -Path "C:\Users\$User\Pictures"
                New-Item -ItemType Junction -Path "C:\Users\$User" -Name "Pictures" -Target "C:\Users\$User\Nextcloud\Pictures" -Force
                Remove-Item -Path "C:\Users\$User\Videos"
                New-Item -ItemType Junction -Path "C:\Users\$User" -Name "Videos" -Target "C:\Users\$User\Nextcloud\Videos" -Force
                

                where would this be run from, the DC?

                This would have to be run from the End-user's computer from the looks of it.

                You are trying to screw with the end user's folders. they have to exist, and you have to have rights to them. neither of which are true of an admin account.

                Are you automating this -- then How?

                If you're not automating it, then why not just manually add the folders to the NextCloud client?

                /sigh FFS...

                @JaredBusch said in Crashplan vs Backblaze in 2018:

                Something like this. It is not ready for prime time, but was my starting point last week when setting up a new desktop.

                dafyreD 1 Reply Last reply Reply Quote 0
                • dafyreD
                  dafyre @JaredBusch
                  last edited by

                  @JaredBusch said in Crashplan vs Backblaze in 2018:

                  @dafyre said in Crashplan vs Backblaze in 2018:

                  @JaredBusch said in Crashplan vs Backblaze in 2018:

                  @dafyre said in Crashplan vs Backblaze in 2018:

                  @Donahue said in Crashplan vs Backblaze in 2018:

                  @JaredBusch said in Crashplan vs Backblaze in 2018:

                  @dafyre said in Crashplan vs Backblaze in 2018:

                  @black3dynamite said in Crashplan vs Backblaze in 2018:

                  @dafyre said in Crashplan vs Backblaze in 2018:

                  @black3dynamite said in Crashplan vs Backblaze in 2018:

                  @Markferron said in Crashplan vs Backblaze in 2018:

                  @DustinB3403 said in Crashplan vs Backblaze in 2018:

                  Can I ask why you are protecting user devices though? Generally these have very little on them and through simple policy can everything be saved on your servers or cloud and thus don't need backup.

                  I would really like to do this. We have onedrive available for all of our users and I was thinking of coming up with some sort of system that just uses their onedrive as the primary source of their homefolder.

                  That's how I do it but we are using Nextcloud.

                  All users root folders under their user profile is linked to the actual folders in C:\Users\john.doe\Nextcloud{Desktop, Documents, etc...}. And the data is synced back to the Nextcloud server and that server is backed up.

                  How do you go about doing that? Editing the location of Desktop, Documents, etc... ?

                  Use Junction Points. Its like using symbolic links in Linux.

                  Oh... Duh, lol. Thanks.

                  I'm just trying to figure out how that would work if you have to do more than a few client machines at a time.

                  Something like this. It is not ready for prime time, but was my starting point last week when setting up a new desktop.

                  $User = Read-Host "Enter UserName"
                  Remove-Item -Path "C:\Users\$User\Desktop"
                  New-Item -ItemType Junction -Path "C:\Users\$User" -Name "Desktop" -Target "C:\Users\$User\Nextcloud\Desktop" -Force
                  Remove-Item -Path "C:\Users\$User\Documents"
                  New-Item -ItemType Junction -Path "C:\Users\$User" -Name "Documents" -Target "C:\Users\$User\Nextcloud\Documents" -Force
                  Remove-Item -Path "C:\Users\$User\Downloads"
                  New-Item -ItemType Junction -Path "C:\Users\$User" -Name "Downloads" -Target "C:\Users\$User\Nextcloud\Downloads" -Force
                  Remove-Item -Path "C:\Users\$User\Favorites"
                  New-Item -ItemType Junction -Path "C:\Users\$User" -Name "Favorites" -Target "C:\Users\$User\Nextcloud\Favorites" -Force
                  Remove-Item -Path "C:\Users\$User\Music"
                  New-Item -ItemType Junction -Path "C:\Users\$User" -Name "Music" -Target "C:\Users\$User\Nextcloud\Music" -Force
                  Remove-Item -Path "C:\Users\$User\Pictures"
                  New-Item -ItemType Junction -Path "C:\Users\$User" -Name "Pictures" -Target "C:\Users\$User\Nextcloud\Pictures" -Force
                  Remove-Item -Path "C:\Users\$User\Videos"
                  New-Item -ItemType Junction -Path "C:\Users\$User" -Name "Videos" -Target "C:\Users\$User\Nextcloud\Videos" -Force
                  

                  where would this be run from, the DC?

                  This would have to be run from the End-user's computer from the looks of it.

                  You are trying to screw with the end user's folders. they have to exist, and you have to have rights to them. neither of which are true of an admin account.

                  Are you automating this -- then How?

                  If you're not automating it, then why not just manually add the folders to the NextCloud client?

                  /sigh FFS...

                  @JaredBusch said in Crashplan vs Backblaze in 2018:

                  Something like this. It is not ready for prime time, but was my starting point last week when setting up a new desktop.

                  lol. I thought you were talking about the code...

                  Time to research a way to do that.

                  1 Reply Last reply Reply Quote 0
                  • 1
                  • 2
                  • 2 / 2
                  • First post
                    Last post