public PartialViewResult RestorePoints(AssetViewModel viewModel)
 {
     try
     {
         PSRemoting    psr     = new PSRemoting(viewModel.ComputerName, config.FALCON_FORENSICS_USERNAME, config.FALCON_FORENSICS_PASSWORD, config.FALCON_FORENSICS_DOMAIN);
         SystemRestore restore = new SystemRestore(psr);
         points = restore.GetRestorePoints();
         return(PartialView("_RestorePoints", points));
     }
     catch (Exception e)
     {
         return(PartialView("_Error", e.Message));
     }
 }