Forum tip: Always check when replies were posted. Technology evolves quickly, so some answers may not be up-to-date anymore.

Comments

  • Noob question on doing periodic full backups
    Hi ,

    To make the explanation short, you have 2 options:
    1. Simple schedule and retention (Forever forward incremental)
    2. Advanced schedule with periodic full backups and more retention options

    Each of them can be used depending on your requirements and the environment. If I were to highlight the main purpose of both, then I would suggest this:
    1. Use Simple schedule and retention for the source data that doesn't change very often, and you don't need to keep it for too long. A good example here is an Image-Based backup - in most cases, you need daily image backups for only 1-2 months to protect the system and program files
    2. Use Advanced schedule and retention when the source data needs to be kept in the backup storage for long periods of time (6+ months), and especially when you are following compliance requirements (e.g., keeping the backup data for several years). This approach will consume more space on the storage by creating multiple full backups, but it makes these backups more reliable because of multiple independent backup generations (the Simple schedule has only one). Additionally, the retention options with Advanced schedule allow you to keep full backups for an extended period of time and utilize the Object Lock feature if the backup storage supports it

    You can read more about these mechanisms by following the links below:

    Forever Forward Incremental:
    https://help.msp360.com/cloudberry-backup/backup/about-backups/ffi

    GFS Policy:
    https://help.msp360.com/cloudberry-backup/backup/about-backups/gfs

    We also have a tool designed to help you visualize and understand different backup strategies and retention policies. You can find it by following this link:

    https://help.msp360.com/cloudberry-backup/backup/about-backups/techref/simulator
  • Noob question on doing periodic full backups
    Alright, this approach is also good, as long as it works for you.

    If you decide to review other options, please let us know. We are always happy to help.
  • Noob question on doing periodic full backups
    Hi ,

    I suppose you are currently doing backups to cloud storage in NBF format with the Simple (Forever Forward Incremental) schedule.

    If your retention policy is configured to keep no more than 90-100 restore points, then you could keep the current configuration, because it helps you save on storage costs by having just one full backup.

    But if you want to make your backups more reliable, then configuring a schedule with periodic full backups would be the best choice here. Even though you are going to pay more for the cloud storage because of additional full backups, there will be more independent generations of backups.

    You can enable full backup schedule by switching to Advanced and defining the Full backup schedule:

    5ag1fbsc0ye9m1yn.png
  • Script to uninstall RMM
    Hi Rolan,

    To keep things simple, you can execute the following command to silently uninstall the RMM Agent (if it was installed to the default path):

    C:\Program Files\RMM Agent\uninst.exe /S
    

    But the best way to uninstall the RMM Agent will be using our MSP360 PowerShell module. This is a code example to use in a script file:

    [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
    iex ((New-Object System.Net.WebClient).DownloadString('https://git.io/JUSAA')+'Install-MSP360Module')
    Remove-RMMAgent -Force
    

    And this is a one-line command:

    powershell -ExecutionPolicy Bypass -command "& {[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; iex (New-Object System.Net.WebClient).DownloadString('https://git.io/JUSAA'); Install-MSP360Module; Remove-RMMAgent -Force}"
    

    Hope this helps.